mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
16 lines
228 B
Nim
16 lines
228 B
Nim
discard """
|
|
targets: "c cpp js"
|
|
"""
|
|
|
|
import std/strtabs
|
|
|
|
macro m =
|
|
var t = {"name": "John"}.newStringTable
|
|
doAssert t["name"] == "John"
|
|
|
|
block:
|
|
var t = {"name": "John"}.newStringTable
|
|
doAssert t["name"] == "John"
|
|
|
|
m()
|