summary refs log blame commit diff stats
path: root/tests/rodfiles/tgeneric2.nim
blob: 552d60267a99b862505dbe9881ef794d5f5d7dcb (plain) (tree)
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]