Den4200 / hello-world

A repository full of implementations of the classic, "Hello, world!", in different languages.
MIT License
4 stars 6 forks source link

Add Haskell implementation #11

Closed purefunctor closed 4 years ago

purefunctor commented 4 years ago

This adds a Haskell implementation.

module Main where

main :: IO ()
main = putStrLn "Hello, world!"