From f3d45a1ca914d59968531a6d5c409d80b73e53c3 Mon Sep 17 00:00:00 2001 From: razetime Date: Thu, 20 Jan 2022 11:57:50 +0530 Subject: complete REPL help for symbols --- docs/help/beginblock.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/help/beginblock.html (limited to 'docs/help/beginblock.html') diff --git a/docs/help/beginblock.html b/docs/help/beginblock.html new file mode 100644 index 00000000..af1f3d4b --- /dev/null +++ b/docs/help/beginblock.html @@ -0,0 +1,32 @@ + + + + BQN: Left Curly Bracket (`{`) + + +

Left Curly Bracket ({)

+

{ ...: Begin Block

+

Starts a block, which can be one of:

+ +

Must end with a corresponding }.

+↗️
    {𝕨 + 𝕩}   # Function
+(function block)
+
+    {𝕨𝔽𝕩}   # 1-modifier
+(1-modifier block)
+
+    {𝕨𝔽𝔾𝕩} # 2-modifier
+(2-modifier block)
+
+    {a  5}   # Namespace
+{a⇐}
+
+    {5+4+6}   # Immediate block
+15
+
-- cgit v1.2.3