mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
14 lines
177 B
Nim
14 lines
177 B
Nim
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"
|