mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
13 lines
109 B
Nim
13 lines
109 B
Nim
discard """
|
|
output: '''
|
|
@[42]
|
|
@[24, 42]
|
|
'''
|
|
"""
|
|
|
|
var x = @[42,4242]
|
|
x.delete(1)
|
|
echo x
|
|
x.insert(24)
|
|
echo x
|