main :: IO ()
main = do {
putStrLn "Happy Birthday @RazzleberryFox"
}
2
1
3
Indeed haskell, and no idea tbh, but if I were to redo it, I might wanna do: forever $ putStrLn "Happy ..."
2
1
import Control.Monad
main :: IO ()
main = forever $ putStrLn "Happy Birthday @RazzleberryFox"
1
1
You forgot a 'module Main where' at the top :-)
</nitpicker>
Aug 23, 2016 ยท 1:41 PM UTC
1

