fork download
  1. int f = 1
  2. int x = 10
  3.  
  4. start:
  5. if (x == 0) continue end
  6. f = f * x
  7. x = x - 1
  8. continue start
  9.  
  10. end:
  11. println(f)
  12.  
  13.  
Success #stdin #stdout 1.22s 332608KB
stdin
Standard input is empty
stdout
3628800