From 9cfc45f731a121282f47218d6ab80c5b9b06e277 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Fri, 28 Jan 2022 20:56:46 -0500 Subject: Add ;:? to keybar and help --- docs/help/header.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docs/help/header.html (limited to 'docs/help/header.html') diff --git a/docs/help/header.html b/docs/help/header.html new file mode 100644 index 00000000..2dccabef --- /dev/null +++ b/docs/help/header.html @@ -0,0 +1,25 @@ + + + + BQN Colon (:) + + +

Colon (:)

+

:: Header

+

→full documentation

+

Placed at the end of a block header. A header has syntax that matches the way the block is called. It indicates the block type, and number and structure of inputs.

+↗️
    "xy" {ab _op c: b} 
+'y'
+
+

Multiple bodies are searched in order to find one with a matching header.

+↗️
    F  {m Fn n: m+Fn n;  𝕊n: 2×n;  𝕊𝕩: 𝕩÷2}
+
+    F 3      # 𝕊n
+6
+
+    F 6     # 𝕊⁼𝕩
+3
+
+    10 F 3   # m Fn n
+16
+
-- cgit v1.2.3