
4 Sep
2012
4 Sep
'12
8:03 a.m.
What does the following do expression translate into? (I.e., using >>= operator and lambda functions.) code: -------- h = do a <- (return 1 :: IO Integer) b <- (return 2) return (a + b + 1) -------- -- frigidcode.com indicium.us