Stepping through 'Haskell by Example'

1 · Shane Mulligan · June 10, 2020, 4 p.m.
Original article Haskell by Example Hello World 1 main = putStrLn "hello world" hello world Values 1 2 3 4 5 6 7 8 main = do putStrLn $ "haskell " ++ "lang" putStrLn $ "1+1 = " ++ show (1+1) putStrLn $ "7.0/3.0 = " ++ show (7.0/3.0) print $ True && False print $ True || False print $ not True haskell lang 1+1 = 2 7....