mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
275 B
Nim
15 lines
275 B
Nim
discard """
|
|
targets: "c cpp js"
|
|
ccodecheck: "'HELLO'"
|
|
action: compile
|
|
"""
|
|
|
|
when defined(js):
|
|
var foo = proc(): void{.codegenDecl: "/*HELLO*/function $2($3)".} =
|
|
echo "baa"
|
|
else:
|
|
var foo = proc(): void{.codegenDecl: "/*HELLO*/$1 $2 $3".} =
|
|
echo "baa"
|
|
|
|
foo()
|