From 1c18950453d3b4281c921fdb79f80fe4bec6ec3e Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Thu, 23 Jun 2022 16:53:49 -0400 Subject: Add [] to keybar and help --- docs/help/beginarray.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/help/beginarray.html (limited to 'docs/help/beginarray.html') diff --git a/docs/help/beginarray.html b/docs/help/beginarray.html new file mode 100644 index 00000000..07abccdf --- /dev/null +++ b/docs/help/beginarray.html @@ -0,0 +1,20 @@ + + + + BQN: Left Square Bracket ([) + + +

Left Square Bracket ([)

+

[ ...: Begin array

+

→full documentation

+

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"]
+┌─     
+╵"abc  
+  def" 
+      ┘
+
+    [4, 5]
+Error: >: Elements didn't have equal shapes (contained shapes ⟨4⟩ and ⟨5⟩)
+
-- cgit v1.2.3