Skip to content

Instantly share code, notes, and snippets.

@sparksp
Created December 10, 2019 09:02
Show Gist options
  • Save sparksp/fccd331988360cac56a990eacf4ac378 to your computer and use it in GitHub Desktop.
Save sparksp/fccd331988360cac56a990eacf4ac378 to your computer and use it in GitHub Desktop.
Comparison of Elm vs F#
module Option exposing (getOr)
getOr : a -> Maybe a -> a
getOr x val =
case val of
Just v ->
v
Nothing ->
x
module Option =
let getOr x = function | Some v -> v | None -> x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment