summary refs log tree commit diff stats
path: root/tests/array/tarray3.nim
blob: 24bf26fda3dfa3d6d2cbec268c3275ee14272775 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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