diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-01-03 20:45:34 -0500 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-01-03 20:45:41 -0500 |
| commit | b8dab04e748ed3095ede6924539fb6b5eb58012d (patch) | |
| tree | e1e0905db1fe29a94c96585a0690db93d80d8719 /docs | |
| parent | f75cd63818c5c3a54d93e708c3218cdfca09d5ac (diff) | |
Indicate material covered in each tutorial in the index
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorial/index.html | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/docs/tutorial/index.html b/docs/tutorial/index.html index 92d46d5a..83be4ea2 100644 --- a/docs/tutorial/index.html +++ b/docs/tutorial/index.html @@ -8,8 +8,29 @@ <p>BQN tutorials explain how to approach and use the language as a newcomer (or they try; please get in touch if you find that they skip ahead!). Tutorials are meant to explain key ideas and may ignore details that would be included in the <a href="../doc/index.html">documentation</a>; also unlike the documentation they're meant to be read in order, as each tutorial will build on ideas from the previous ones.</p> <p>Tutorials assume (pretty presumptively, really. Disgusting.) that you are already motivated to learn BQN and use simple rather than flashy examples. Documents to induce motivation beyond the README are not yet available. Do feel free to skim or jump around if you find you are reading a lot of things that are already obvious.</p> <p>The tutorials available so far:</p> -<ul> -<li><a href="expression.html">Expressions</a></li> -<li><a href="list.html">List manipulation</a></li> -<li><a href="combinator.html">Combinators</a></li> -</ul> +<table> +<thead> +<tr> +<th>Tutorial</th> +<th>Concepts</th> +<th>Primitives</th> +</tr> +</thead> +<tbody> +<tr> +<td><a href="expression.html">Expressions</a></td> +<td>Arithmetic, syntax, affine characters</td> +<td><code><span class='Function'>+-×÷⋆√</span><span class='Modifier'>˜⁼˙</span><span class='Modifier2'>∘</span></code></td> +</tr> +<tr> +<td><a href="list.html">List manipulation</a></td> +<td>Lists, strings, and strands; pervasion</td> +<td><code><span class='Function'>∾≍⌽↕</span><span class='Modifier'>¨´</span></code></td> +</tr> +<tr> +<td><a href="combinator.html">Combinators</a></td> +<td>Tacit programming, booleans</td> +<td><code><span class='Function'><>≠=≤≥≡≢</span><span class='Modifier2'>○⊸⟜</span></code></td> +</tr> +</tbody> +</table> |
