summary refs log tree commit diff stats
path: root/tests/pragmas/tcompile_pragma.nim
blob: 4e09a7501a00a94f21b0a330e1e1129d04fb483c (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  output: '''34'''
"""

{.compile("cfunction.c", "-DNUMBER_HERE=34").}

proc cfunction(): cint {.importc.}

echo cfunction()