Skip to content

Instantly share code, notes, and snippets.

View psycotica0's full-sized avatar

Christopher Vollick psycotica0

View GitHub Profile
@psycotica0
psycotica0 / test.hs
Last active August 29, 2015 14:06
Demo of Either as a Monad for annotated return types.
meow = Right "Meow"
greeting = Right "Hi"
sub_meow input = do
value <- integer_meow input
if value > 7 then
Right "Big Meow"
else
Left "Too Small"