fork download
  1. import os
  2. import strutils
  3.  
  4. var
  5. x:float32 = 1e9-500
  6. y:float = 1e9-500
  7. echo x # prints 999999488.0 even though 999999500.0 would roundtrip
  8. echo y
Success #stdin #stdout 0s 5532KB
stdin
Standard input is empty
stdout
999999488.0
999999500.0