some haskell stuff

Sign up for a GitHub account Sign in All Gists lykkin / gist:55abd562afca5788d5d7 Created October 29, 2014 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav some haskell stuff View gist:55abd562afca5788d5d7 gistfile1.txt Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 data BExp = TRUE | FALSE | AND BExp BExp | OR BExp BExp | NOT BExp beval :: BExp -> Bool beval TRUE = True beval FALSE = False beval (AND left right) = (beval left) && (beval right) beval (OR left right) = (beval left) || (beval right) beval (NOT ex) = not (beval ex) data AExp = INT Integer...

Linked on 2014-10-29 03:59:25 | Similar Links