Files
haskell/rettest1.hs

12 lines
167 B
Haskell
Raw Permalink Normal View History

2017-02-07 20:06:59 +00:00
main =
do x <- getX
putStrLn x
getX =
do return "hello"
return "aren't"
return "these"
return "returns"
return "rather"
return "pointless?"