Skip to content

Instantly share code, notes, and snippets.

@tmountain
Created May 25, 2017 14:20
Show Gist options
  • Save tmountain/c894ea2c9eab8c500a7a86686855716f to your computer and use it in GitHub Desktop.
Save tmountain/c894ea2c9eab8c500a7a86686855716f to your computer and use it in GitHub Desktop.
import Html exposing (text)
type alias User =
{ name : String
, age : Maybe Int
}
canBuyAlcohol : User -> Bool
canBuyAlcohol user =
case user.age of
Nothing ->
False
Just age ->
age >= 21
user = User "Travis" (Just 37)
main =
text <| toString <| canBuyAlcohol user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment