Skip to content

Instantly share code, notes, and snippets.

@yanok
Created April 22, 2018 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yanok/0eb3fe660634378a85d4819d1c931ff0 to your computer and use it in GitHub Desktop.
Save yanok/0eb3fe660634378a85d4819d1c931ff0 to your computer and use it in GitHub Desktop.
data Val = VNum Double | VBool Bool
toNumber :: Val -> Double
toNumber (VNum x) = x
toNumber (VBool True) = 1
toNumber (VBool False) = 0
main :: IO ()
main = print $ (* (-1)) $ toNumber (VBool False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment