fork download
  1. for i=1.3,1.4,0.01 do print(i) end
  2. for i=13.0,14.0,0.1 do print(i) end
Success #stdin #stdout 0.01s 2496KB
stdin
Standard input is empty
stdout
1.3
1.31
1.32
1.33
1.34
1.35
1.36
1.37
1.38
1.39
13
13.1
13.2
13.3
13.4
13.5
13.6
13.7
13.8
13.9
14