aboutsummaryrefslogtreecommitdiff
path: root/docs/help/endarray.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/help/endarray.html')
-rw-r--r--docs/help/endarray.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/help/endarray.html b/docs/help/endarray.html
new file mode 100644
index 00000000..44ccc07a
--- /dev/null
+++ b/docs/help/endarray.html
@@ -0,0 +1,19 @@
+<head>
+ <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
+ <link href="../style.css" rel="stylesheet"/>
+ <title>BQN: Right Square Bracket (])</title>
+</head>
+<div class="nav">(<a href="https://github.com/mlochbaum/BQN">github</a>) / <a href="../index.html">BQN</a> / <a href="index.html">help</a></div>
+<h1 id="right-square-bracket-"><a class="header" href="#right-square-bracket-">Right Square Bracket (<code><span class='Bracket'>]</span></code>)</a></h1>
+<h2 id="--end-array"><a class="header" href="#--end-array"><code><span class='Value'>...</span> <span class='Bracket'>]</span></code>: End array</a></h2>
+<p><a class="fulldoc" href="../doc/arrayrepr.html#high-rank-arrays">→full documentation</a></p>
+<p>Ends an array started by a <code><span class='Bracket'>[</span></code>. See <a href="beginarray.html">Begin Array</a> for more details.</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=WyJhYmMiLCAiZGVmIl0KClvihpU0LCDihpU1XQ==">↗️</a><pre> <span class='Bracket'>[</span><span class='String'>&quot;abc&quot;</span><span class='Separator'>,</span> <span class='String'>&quot;def&quot;</span><span class='Bracket'>]</span>
+┌─
+╵"abc
+ def"
+ ┘
+
+ <span class='Bracket'>[</span><span class='Function'>↕</span><span class='Number'>4</span><span class='Separator'>,</span> <span class='Function'>↕</span><span class='Number'>5</span><span class='Bracket'>]</span>
+<span class='Error'>Error: >: Elements didn't have equal shapes (contained shapes ⟨4⟩ and ⟨5⟩)</span>
+</pre>