Jwhiles / purescript-by-example

Code from working thru purescript by example

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

purescript-by-example

Code from working thru purescript by example

Notes

Differences from Haskell

Composition

rather than using . for function composition as in Haskell, we instead use >>> and <<<.

<<< is equivalent to ., or standard composition. While >>> is forward composition, often known as the pipe or pipeline operator.

Types

PureScript allows for quantified types for example forall a. a -> .... I think that the fullstop is just delimiting the quantifier

About

Code from working thru purescript by example

License:MIT License


Languages

Language:PureScript 100.0%