fork download
  1. set x 0
  2. while {$x <10} {
  3. puts $x
  4. set x [expr {$x + 1}]
  5. }
Success #stdin #stdout 0.02s 5272KB
stdin
Standard input is empty
stdout
0
1
2
3
4
5
6
7
8
9