summary refs log blame commit diff stats
path: root/tests/rodfiles/tgeneric1.nim
blob: a3f7b870bb47b17a3878a290320e8e9b07cb4703 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                
discard """
  output: "abcd"
"""

import tables

var x = initTable[int, string]()

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

echo x[2], x[5]