Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Created July 17, 2015 14:40
Show Gist options
  • Save joshuakfarrar/a7e664e777e6a010c1f4 to your computer and use it in GitHub Desktop.
Save joshuakfarrar/a7e664e777e6a010c1f4 to your computer and use it in GitHub Desktop.
greet :: [Char] -> [Char]
greet name = "hello, " ++ name
main = putStrLn (greet "sent1nel")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment