mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 20:47:53 +00:00
22 lines
147 B
Nim
22 lines
147 B
Nim
discard """
|
|
msg: '''1
|
|
2
|
|
3
|
|
1
|
|
2
|
|
3'''
|
|
"""
|
|
|
|
const s = @[1,2,3]
|
|
|
|
macro foo: stmt =
|
|
for e in s:
|
|
echo e
|
|
|
|
foo()
|
|
|
|
static:
|
|
for e in s:
|
|
echo e
|
|
|