aboutsummaryrefslogtreecommitdiff
path: root/docs/help/nullcharacter.html
blob: ffcc9f1b67dc5f15e7623ed0dbe7c7ffcf816b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>