aboutsummaryrefslogtreecommitdiff
path: root/docs/help/nullcharacter.html
diff options
context:
space:
mode:
authorrazetime <raghuallthetime@hotmail.com>2022-01-20 11:57:50 +0530
committerrazetime <raghuallthetime@hotmail.com>2022-01-20 11:57:50 +0530
commitf3d45a1ca914d59968531a6d5c409d80b73e53c3 (patch)
treebc89e3b80c84d854f382e03fdbb5a43e08d791b8 /docs/help/nullcharacter.html
parent97e5db7fa0bf2389589a99ccd26cf84c1e0ced73 (diff)
complete REPL help for symbols
Diffstat (limited to 'docs/help/nullcharacter.html')
-rw-r--r--docs/help/nullcharacter.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/help/nullcharacter.html b/docs/help/nullcharacter.html
new file mode 100644
index 00000000..ffcc9f1b
--- /dev/null
+++ b/docs/help/nullcharacter.html
@@ -0,0 +1,19 @@
+<head>
+ <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
+ <link href="../style.css" rel="stylesheet"/>
+ <title>BQN: Commercial At (`@`)</title>
+</head>
+<div class="nav">(<a href="https://github.com/mlochbaum/BQN">github</a>) / <a href="../index.html">BQN</a> / <a href="index.html">help</a></div>
+<h1 id="commercial-at-"><a class="header" href="#commercial-at-">Commercial At (<code><span class='String'>@</span></code>)</a></h1>
+<h2 id="-null-character"><a class="header" href="#-null-character"><code><span class='String'>@</span></code>: Null Character</a></h2>
+<p>Null character, codepoint 0 in ASCII. Has the status of any other character.</p>
+<p>Can be added to any positive integer to get its character equivalent.</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=QCs1MAoKQAoKQCs2NA==">↗️</a><pre> <span class='String'>@</span><span class='Function'>+</span><span class='Number'>50</span>
+'2'
+
+ <span class='String'>@</span>
+@
+
+ <span class='String'>@</span><span class='Function'>+</span><span class='Number'>64</span>
+'@'
+</pre>