Created
March 18, 2016 23:30
-
-
Save sheroze1123/a0567ee057c32c419005 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use conv | |
use io | |
main(args:int[][]) { | |
a:int[] = {{1,2,3},{4,5,6}}[1]; | |
b:int = a[1]; | |
print(unparseInt(b)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This prints garbage to the screen. Multi-dimensional assigns or accesses are broken.