mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
16 lines
245 B
Nim
16 lines
245 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 true:
|
|
console.log "Hello, world"
|