mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
7 lines
104 B
Nim
7 lines
104 B
Nim
import std / [tables, sets, sharedtables]
|
|
|
|
var shared: SharedTable[int, int]
|
|
shared.init
|
|
|
|
shared[1] = 1
|