aboutsummaryrefslogtreecommitdiff
path: root/docs/doc/array.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/doc/array.html')
-rw-r--r--docs/doc/array.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doc/array.html b/docs/doc/array.html
index 9cf74517..001a9f70 100644
--- a/docs/doc/array.html
+++ b/docs/doc/array.html
@@ -3,7 +3,7 @@
<link href="../style.css" rel="stylesheet"/>
<title>BQN: The array</title>
</head>
-<div class="nav"><a href="https://github.com/mlochbaum/BQN">BQN</a> / <a href="../index.html">main</a> / <a href="index.html">doc</a></div>
+<div class="nav">(<a href="https://github.com/mlochbaum/BQN">github</a>) / <a href="../index.html">BQN</a> / <a href="index.html">doc</a></div>
<h1 id="the-array">The array</h1>
<p>As BQN is an array language, it's often helpful to understand what an array is when writing BQN programs. Fully describing the concept is sometimes <a href="https://www.jsoftware.com/papers/array.htm">held to be tricky</a>; here we'll see definitions, examples, and metaphors.</p>
<p>In BQN, as in APL, arrays are multidimensional, instead of strictly linear. Languages like Python, Javascript, or Haskell offer only one-dimensional arrays with <code><span class='Value'>[]</span></code> syntax, and typically represent multidimensional data with nested arrays. Multidimensional arrays have fundamental differences relative to this model.</p>