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












                                      
discard """
  output: '''done'''
"""

import tables

proc main =
  var tab = newTable[string, string]()
  for i in 0..1000:
    tab.add "key", "value " & $i

main()
echo "done"