static-fp icon indicating copy to clipboard operation
static-fp copied to clipboard

Materials for /An Outsider's Guide to Statically Typed Functional Programming/

Results 6 static-fp issues
Sort by recently updated
recently updated
newest added

> That gies you the option of breaking coding into two steps:

> Here’s an example that compares the values input to its output: [ (Just 1) Nothing (Just 2) ] -- input to ` values ` [ 1 2 ] --...

You'll find it in the Introduction.

```elm module SumTypes.WholeStorySolution exposing (..) type Silly a b = AsA a | AsB b | AlsoAsA a | AsInt Int | AsFloatString Float String | AsBoth a b |...

Perhaps text should be updated appropriately

In chapter 1 you have: ``` Start the Elm repl (with elm-repl) and type the following ``` Just that the needed command is `elm repl` and not `elm-repl`. Perhaps `elm-repl`...