summary refs log tree commit diff stats
path: root/tests/manyloc/standalone/barebone.nim
blob: 9d75f8f2e15244af5cf8f6d086b2332c2a114413 (plain) (blame)
1
2
3
4
5
6
7
8
9
# 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)