Saturday, September 1, 2007

Hello World in Haskell

My first experience with Haskell, a functional programming language:
module Main (main) where
main = putStr "Hello World\n"