mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-18 19:10:57 +00:00
7 lines
112 B
Nim
7 lines
112 B
Nim
|
|
proc printf(frmt: cstring) {.varargs, header: "<stdio.h>", cdecl.}
|
|
|
|
var x = 0
|
|
inc x
|
|
printf("hi %ld\n", x+4777)
|