fork download
  1. (print (type-of 0.1))
  2. (print 0.1)
  3. (print 0.2)
  4. (print (+ 0.1 0.2))
  5. (print (type-of (+ 0.1 0.2)))
Success #stdin #stdout 0s 24820KB
stdin
Standard input is empty
stdout
SINGLE-FLOAT 
0.1 
0.2 
0.3 
SINGLE-FLOAT