aboutsummaryrefslogtreecommitdiff
path: root/docs/help/character.html
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-06-01 21:38:15 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-06-01 21:38:15 -0400
commitb813f80bbe1e9249f312a153f9316f3aa2894660 (patch)
tree52a2c545c5e8810ae3e08c78e2b33b5b67c4d1d8 /docs/help/character.html
parent6725dc97c14ae87f7bfac650ad96edb759340aa2 (diff)
Add help pages and keybar entries for quote characters
Diffstat (limited to 'docs/help/character.html')
-rw-r--r--docs/help/character.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/help/character.html b/docs/help/character.html
new file mode 100644
index 00000000..7a29a0f5
--- /dev/null
+++ b/docs/help/character.html
@@ -0,0 +1,13 @@
+<head>
+ <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
+ <link href="../style.css" rel="stylesheet"/>
+ <title>BQN: Single Quote (')</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="single-quote-"><a class="header" href="#single-quote-">Single Quote (<code><span class='String'>'</span></code>)</a></h1>
+<h2 id="c-character"><a class="header" href="#c-character"><code><span class='String'>'c'</span></code>: Character</a></h2>
+<p><a class="fulldoc" href="../doc/syntax.html#constants">→full documentation</a></p>
+<p>A character literal whose value is the character between quotes. Any character can be used, even <code><span class='String'>'</span></code> and newline.</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=J2En4oC/J2In">↗️</a><pre> <span class='String'>'a'</span><span class='Ligature'>‿</span><span class='String'>'b'</span>
+"ab"
+</pre>