mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
15 lines
210 B
Nim
15 lines
210 B
Nim
discard """
|
|
output: '''
|
|
'''
|
|
"""
|
|
|
|
import sharedtables
|
|
|
|
var table: SharedTable[int, int]
|
|
|
|
init(table)
|
|
table[1] = 10
|
|
assert table.mget(1) == 10
|
|
assert table.mgetOrPut(3, 7) == 7
|
|
assert table.mgetOrPut(3, 99) == 7
|