Files
Nim/tests/js/tvarargs.nim
genotrance c115090f6e Testament should run tests with no action (#8232)
* Testament should run tests with no action

* Fix strutils tests for JS
2018-07-08 20:38:46 -04:00

16 lines
253 B
Nim

discard """
output: "Hello, world"
"""
# bug #3584
type
ConsoleObj {.importc.} = object of RootObj
log*: proc() {.nimcall varargs.}
Console = ref ConsoleObj
var console* {.importc.}: Console
when isMainModule:
console.log "Hello, world"