summary refs log tree commit diff stats
path: root/tests/rodfiles/tgeneric2.nim
blob: 552d60267a99b862505dbe9881ef794d5f5d7dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  output: "abef"
"""

import tables

var x = initTable[int, string]()

x[2] = "ab"
x[5] = "ef"

echo x[2], x[5]