Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

Arrays are created by enclosing comma-delimited expressions in square brackets like so:

["a", "b", "c"]


Arrays use zero-base indexing and can be referenced in the usual manner:

a = [1,4,3,6,5];
b = a[1] // b = 4


Comments start with a double slash (//) and go to the end of the line. The examples in this appendix frequently use comments to show return values.


Note that array references work for arrays of any dimension. For example, c[1][2] is allowed (presuming c is an array of arrays).

Operations on Arrays

There are a number of operators that work on arrays. In addition there is an array membership infix operator

  • No labels