bobjervis / parasol

The Parasol Language and related core development tools
Apache License 2.0
2 stars 2 forks source link

Implement multi-dimensional arrays. #4

Open bobjervis opened 9 years ago

bobjervis commented 9 years ago

Allow declaration of multi-dimensional arrays:

int[int, int] a; // declares a to be a two dimensional array of int's (each index of int type).

Limitations: for now, only scalar-arithmetic dimensions can be declared.