mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
15 lines
119 B
Nim
15 lines
119 B
Nim
discard """
|
|
output: '''
|
|
{}
|
|
{}
|
|
'''
|
|
"""
|
|
|
|
proc foo() =
|
|
var bar: set[int16] = {}
|
|
echo bar
|
|
bar.incl(1)
|
|
|
|
foo()
|
|
foo()
|