Quiz: What is the result produced by the following valid Haskell program? > module Main (main) where > main = print (show x == show y) > x = 5 > y = 5 > z = x + 2.3 -- used for side effect only Notice that the above program is correct either with or without the last line.