Haskell Program to print hello world

Program

main = putStrLn "Hello World!!!"

Output

$ ghc -o hello-world hello-world.hs 
[1 of 1] Compiling Main             ( hello-world.hs, hello-world.o )
Linking hello-world ...
$ ./hello-world 
Hello World!!!