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






                                          
# simple check for two dimensional arrays

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

echo myData[0][2] #OUT 3