mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
12 lines
214 B
Nim
12 lines
214 B
Nim
discard """
|
|
output: '''
|
|
-1
|
|
8
|
|
'''
|
|
ccodecheck: "'console.log(-1); function fac__tcodegendeclproc_u1(n_p0)'"
|
|
"""
|
|
proc fac(n: int): int {.codegenDecl: "console.log(-1); function $2($3)".} =
|
|
return n
|
|
|
|
echo fac(8)
|