summary refs log blame commit diff stats
path: root/tests/js/t8914.nim
blob: ff716b42a36a455cdfa97bd50dd53a29cabb4468 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                  
discard """
  output: '''
@[42]
@[24, 42]
'''
"""

var x = @[42,4242]
x.delete(1)
echo x
x.insert(24)
echo x