mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
10 lines
188 B
Nim
10 lines
188 B
Nim
|
|
# bug #2041: Macros need to be available for os:standalone!
|
|
import macros
|
|
|
|
proc printf(frmt: cstring) {.varargs, header: "<stdio.h>", cdecl.}
|
|
|
|
var x = 0
|
|
inc x
|
|
printf("hi %ld\n", x+4777)
|