finally getting around to Learn You a Haskell for Great Good

This commit is contained in:
Dan Buch 2012-04-02 22:29:12 -04:00
parent 67a2efde05
commit 08fccd5156
2 changed files with 11 additions and 0 deletions

8
lyahfgg/README Normal file
View File

@ -0,0 +1,8 @@
_____________________________________
< Learn You a Haskell for Great Good! >
-------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||

3
lyahfgg/baby.hs Normal file
View File

@ -0,0 +1,3 @@
doubleMe x = x + x
doubleUs x y = x*2 + y*2