got rid of 'accept' dir in the tests

This commit is contained in:
Araq
2011-11-19 15:45:51 +01:00
parent d0772feb08
commit a274f3bf5b
264 changed files with 5 additions and 7 deletions

13
tests/run/tarray3.nim Executable file
View File

@@ -0,0 +1,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