fork download
  1. var interv = (1..10).step( 2 )
  2.  
  3. for(var i in interv){
  4. print(i)
  5. }
Success #stdin #stdout 3.66s 169504KB
stdin
Standard input is empty
stdout
1
3
5
7
9