0.10.0
This release changes how indexers work, it adds support for the following types of indexers
- Indexers in variable declarations
$x[5]: 3;
- Nested indexers
$x[1][2]: 3;
- Mapping indexers
$x[*] *: 5; // multiplies all values in $x by 5
- Defining new lists and such using indexers
$y[0]: 3; // Creates $y as a list with its first element being 3