print2.hs 190 B

1234567891011
  1. module PRINT2 where
  2. putstr = putStr
  3. putstrln = putStrLn
  4. main :: IO ()
  5. main = do
  6. putstrln "yeah boi"
  7. putstr "its getting"
  8. putstr " really hot in here"
  9. putstrln "\nisn't it?"