Added samples for Haskell

This commit is contained in:
killmous
2014-04-27 11:29:26 -05:00
parent e513ac628a
commit a17f7d1cb2
3 changed files with 85 additions and 0 deletions

6
samples/Haskell/Hello.hs Normal file
View File

@@ -0,0 +1,6 @@
import Data.Char
main :: IO ()
main = do
let hello = "hello world"
putStrLn $ map toUpper hello