Haskell
Introduction
This is my first dip into Haskell, just felt like trying it
Hello World
Here we start with main and strange format but no curly brackets which is good. <syntaxthighlight lang="hs"> main :: IO() main = putStrLn "Hello World" </syntaxthighlight>