mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 14:32:53 +00:00
10 lines
129 B
Nim
10 lines
129 B
Nim
# b.nim
|
|
import a_module
|
|
doAssert foo() == 0
|
|
|
|
proc hello(x: type) =
|
|
var s {.global.} = default(x)
|
|
doAssert s == 0
|
|
|
|
hello(int)
|