fork download
  1. let i=1
  2. while(i<=10){
  3. print(i);
  4. i++;
  5. }
Success #stdin #stdout 0.03s 16700KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10