mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
18 lines
346 B
Nim
18 lines
346 B
Nim
discard """
|
|
output: '''a 1 b 2 x @[3, 4, 5] y 6 z 7
|
|
yay
|
|
12'''
|
|
"""
|
|
|
|
proc test(a, b: int, x: varargs[int]; y, z: int) =
|
|
echo "a ", a, " b ", b, " x ", @x, " y ", y, " z ", z
|
|
|
|
test 1, 2, 3, 4, 5, 6, 7
|
|
|
|
template takesBlock(a, b: int, x: varargs[expr]; blck: stmt) =
|
|
blck
|
|
echo a, b
|
|
|
|
takesBlock 1, 2, "some", 0.90, "random stuff":
|
|
echo "yay"
|