fork download
  1. def ab = [1,2]
  2. for(int i=0; i<ab.size(); i++){
  3. println(ab[i])
  4. }
Success #stdin #stdout 0.92s 217280KB
stdin
Standard input is empty
stdout
1
2