Last active
August 29, 2015 14:01
-
-
Save zouppen/34505ebedc2f91e15482 to your computer and use it in GitHub Desktop.
Evening planning helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- |Evening planning simulation. It compiles, therefore it works. | |
module EveningPlan where | |
data Coffee = Coffee | Tea | Beer deriving Show | |
isItFriday = True | |
eveningPlan :: Maybe Coffee | |
eveningPlan = if isItFriday | |
then Just Beer | |
else Nothing | |
haveCoffee = repeat Beer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment