fork download
  1. procedure main()
  2. every i := 1 to 10 do {
  3. if i % 2 = 0 then
  4. next
  5. writes(i, " ")
  6. }
  7. end
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
1 3 5 7 9