Uploading Hello Word in Haskell

Hello World in Functional Paradigm (Haskell)
This commit is contained in:
Amintas Victor 2018-10-08 22:02:22 -03:00 committed by GitHub
parent 31c8fc932f
commit 038950201a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
code/HelloWorld.hs Normal file
View File

@ -0,0 +1,3 @@
main :: IO()
main = do
putStrLn("Hello World ! I am Amintas :)")