Skip to content

Instantly share code, notes, and snippets.

@LemonBoy

LemonBoy/- Secret

Created September 30, 2018 18:28
Show Gist options
  • Save LemonBoy/f7345ddb8f7ac47534e2f989eeb4a122 to your computer and use it in GitHub Desktop.
Save LemonBoy/f7345ddb8f7ac47534e2f989eeb4a122 to your computer and use it in GitHub Desktop.
template repeat(n: static[Natural], body: untyped): untyped =
for _ in 0 ..< n:
body
repeat(5):
echo "hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment