summary refs log blame commit diff stats
path: root/tests/accept/run/tarray3.nim
blob: d28778357483a7887bb991b9df58904580184447 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                     






                                          

 
discard """
  file: "tarray3.nim"
  output: "3"
"""
# simple check for two dimensional arrays

const  
  myData = [[1,2,3], [4, 5, 6]]

echo myData[0][2] #OUT 3