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/currentfunction.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/help/currentfunction.html (limited to 'docs/help/currentfunction.html') diff --git a/docs/help/currentfunction.html b/docs/help/currentfunction.html new file mode 100644 index 00000000..dd0ac5b0 --- /dev/null +++ b/docs/help/currentfunction.html @@ -0,0 +1,17 @@ + + + + BQN: Mathematical Double-struck S (`𝕊`) + + +

Mathematical Double-struck S (𝕊)

+

𝕊: Current Function

+

A variable assigned to the current function block. 𝕤 can be used to access the current function block as a value.

+

𝕊 can be used for recursion.

+↗️
    F  {𝕊 0: 1; 𝕩 × 𝕊 𝕩-1} # Factorial
+    F 5
+120
+
+    {𝕤𝕤}4
+⟨ (function block) (function block) ⟩
+
-- cgit v1.2.3