diff options
Diffstat (limited to 'help/beginarray.md')
| -rw-r--r-- | help/beginarray.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/help/beginarray.md b/help/beginarray.md new file mode 100644 index 00000000..a8e64c33 --- /dev/null +++ b/help/beginarray.md @@ -0,0 +1,14 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/beginarray.html).* + +# Left Square Bracket (`[`) + +## `[ ...`: Begin array +[→full documentation](../doc/arrayrepr.md#high-rank-arrays) + +Starts a high-rank array. Entries must be separated by `,` or `⋄`. These must have the same shape. They become major cells of the result. + +Must end with a corresponding `]`. + + ["abc", "def"] + + [↕4, ↕5] |
