mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
14 lines
125 B
Nim
14 lines
125 B
Nim
discard """
|
|
output: "abef"
|
|
"""
|
|
|
|
import tables
|
|
|
|
var x = initTable[int, string]()
|
|
|
|
x[2] = "ab"
|
|
x[5] = "ef"
|
|
|
|
echo x[2], x[5]
|
|
|