haskell-programming
Simple Haskell programs
git clone
git://git.laack.co/haskell-programming.git
Log
|
Files
|
Refs
hello-world.hs (72B)
1
module Main where
2
3
helloWorld = "Hello, World!"
4
main = print helloWorld