Skip to content

Instantly share code, notes, and snippets.

@leveled
Created February 3, 2021 13:29
Show Gist options
  • Save leveled/d93eedd79f4a9a09eaec71de79b13535 to your computer and use it in GitHub Desktop.
Save leveled/d93eedd79f4a9a09eaec71de79b13535 to your computer and use it in GitHub Desktop.
Iterators in Nim.nim
iterator countup(a, b: int): int =
var res = a
while res <= b:
yield res
inc(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment