mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
31 lines
425 B
Nim
31 lines
425 B
Nim
discard """
|
|
output: ""
|
|
"""
|
|
|
|
import macros
|
|
|
|
type
|
|
TA = tuple[a: int]
|
|
PA = ref TA
|
|
|
|
macro test*(a: untyped): untyped =
|
|
var val: PA
|
|
new(val)
|
|
val.a = 4
|
|
|
|
test:
|
|
"hi"
|
|
|
|
macro test2*(a: untyped): untyped =
|
|
proc testproc(recurse: int) =
|
|
echo "Thats weird"
|
|
var o : NimNode = nil
|
|
echo " no its not!"
|
|
o = newNimNode(nnkNone)
|
|
if recurse > 0:
|
|
testproc(recurse - 1)
|
|
testproc(5)
|
|
|
|
test2:
|
|
"hi"
|