...
| Code Block | ||||
|---|---|---|---|---|
| ||||
a = [1,4,3,6,5]; b = a[1] // b = 4 |
| Info |
|---|
| 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).
...