Created
February 3, 2021 13:29
-
-
Save leveled/d93eedd79f4a9a09eaec71de79b13535 to your computer and use it in GitHub Desktop.
Iterators in Nim.nim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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