fork download
  1. iterator countup(a, b: int): int =
  2. var res = a
  3. while res <= b:
  4. yield res
  5. inc(res)
Success #stdin #stdout 0s 2428KB
stdin
Standard input is empty
stdout
Standard output is empty