fork download
  1. def i = 0
  2. def a = 1
  3. def b = 3
  4. y=Math.random()*(b-a);
  5. while (i < 10) {
  6. i++
  7. }
  8. for (remainingGuests in 0..9) {
  9. println remainingGuests
  10. }
Success #stdin #stdout 1.46s 219008KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9