Skip to content

Instantly share code, notes, and snippets.

@copygirl
Created October 25, 2018 09:03
Show Gist options
  • Save copygirl/24e560f007410ed6fef585666da570ea to your computer and use it in GitHub Desktop.
Save copygirl/24e560f007410ed6fef585666da570ea to your computer and use it in GitHub Desktop.
import macros
macro foo(i: static[int]): untyped =
echo $i
foo(1)
foo(2)
macro foo2(i: static[int]): untyped =
echo $i
proc doNothing() =
discard i
doNothing()
foo2(1)
foo2(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment