Advertisement
Guest User

Untitled

a guest
Oct 1st, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.26 KB | None | 0 0
  1. template repeat*(times: static[Natural], body: untyped): untyped =
  2.   ## Repeat a body N times.
  3.   ##
  4.   ## I saw it first in Kotlin.
  5.   runnableExamples:
  6.     var cnt = 0
  7.     repeat(5):
  8.       inc cnt
  9.     doAssert cnt == 5
  10.  
  11.   for _ in 0 ..< times:
  12.     body
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement