Basic list construction

This page summarizes the projects mentioned and recommended in the original post on /r/haskellquestions

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • ghc

    Mirror of the Glasgow Haskell Compiler. Please submit issues and patches to GHC's Gitlab instance (https://gitlab.haskell.org/ghc/ghc). First time contributors are encouraged to get started with the newcomers info (https://gitlab.haskell.org/ghc/ghc/wikis/contributing).

    bss@monster % ghci -XNoImplicitPrelude GHCi, version 8.8.4: https://www.haskell.org/ghc/ :? for help Loaded GHCi configuration from /home/bss/.ghc/ghci.conf GHCi> :{ GHCi| data Nat = Z | S Nat GHCi| GHCi| listNat :: a -> Nat -> a -> [a] GHCi| listNat x y z = l y GHCi| where GHCi| l Z = [z] GHCi| l (S p) = x : l p GHCi| :} data Nat = ... listNat :: a -> Nat -> a -> [a] GHCi> listNat 1 (S (S Z)) 3 [1,1,3] (0.00 secs, 71,512 bytes)

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts