mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-25 13:56:13 +00:00
14 lines
204 B
Nim
14 lines
204 B
Nim
discard """
|
|
cmd: "nim $target $options $file"
|
|
output: "Hello"
|
|
ccodecheck: "\\i@'a = ((NimStringDesc*) NIM_NIL)'"
|
|
"""
|
|
|
|
proc main() =
|
|
var a = "Hello"
|
|
echo a
|
|
a = ""
|
|
doAssert a.len == 0
|
|
|
|
main()
|