mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
13 lines
212 B
Nim
13 lines
212 B
Nim
|
|
# 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"
|