summary refs log tree commit diff stats
path: root/tests/stdlib/tstrtabs.nims
blob: 3563ad0ad6c99962ffe3cd43dfcfa22bb65666e0 (plain) (blame)
1
2
3
4
5
import std/[strtabs, assertions]

static:
  let t = {"name": "John", "city": "Monaco"}.newStringTable
  doAssert "${name} lives in ${city}" % t == "John lives in Monaco"