fork download
  1. main = do
  2. putStrLn(show $ a - b == c)
  3. putStrLn(show $ a * 10 - b * 10 == c * 10)
  4. where a = 1.2
  5. b = 1.0
  6. c = 0.2
Success #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
False
True