fork download
  1. def i = 0
  2. while (i < 9) {
  3. i++
  4. }
  5. for (remainingGuests in 0..9) {
  6. println remainingGuests
  7. }
Success #stdin #stdout 1.4s 218944KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9