aboutsummaryrefslogtreecommitdiff
path: root/docs/help/!assert assertwithmsg.html
diff options
context:
space:
mode:
authorrazetime <raghuallthetime@hotmail.com>2022-01-19 22:48:16 +0530
committerrazetime <raghuallthetime@hotmail.com>2022-01-19 22:48:16 +0530
commit2c50d91ec7eb8bc7890befe874a0b93729c2437e (patch)
treeeb621b86b3c8269ab2dd63bd3c628acdf3521059 /docs/help/!assert assertwithmsg.html
parent6c111f1e71e945f66977aecc3322318aa21beacc (diff)
add h2s remove copied output, ascii filenames
Diffstat (limited to 'docs/help/!assert assertwithmsg.html')
-rw-r--r--docs/help/!assert assertwithmsg.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/help/!assert assertwithmsg.html b/docs/help/!assert assertwithmsg.html
deleted file mode 100644
index dd6108d1..00000000
--- a/docs/help/!assert assertwithmsg.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<head>
- <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
- <link href="../style.css" rel="stylesheet"/>
- <title>BQN: Exclamation Mark (`!`)</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="exclamation-mark-"><a class="header" href="#exclamation-mark-">Exclamation Mark (<code><span class='Function'>!</span></code>)</a></h1>
-<p><code><span class='Function'>!</span> <span class='Value'>𝕩</span></code>: Assert</p>
-<p>Throw an error if <code><span class='Value'>𝕩</span></code> is not 1.</p>
-<pre> <span class='Function'>!</span> <span class='Number'>1</span>
-<span class='Number'>1</span>
- <span class='Function'>!</span> <span class='Number'>2</span>
-<span class='Function'>Error</span><span class='Value'>:</span> <span class='Function'>Assertion</span> <span class='Value'>error</span>
-<span class='Value'>at</span> <span class='Function'>!</span> <span class='Number'>2</span>
- <span class='Value'>^</span>
- <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
-<span class='Function'>Error</span><span class='Value'>:</span> <span class='Value'>hello</span>
-<span class='Value'>at</span> <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
-</pre>
-<p><code><span class='Value'>𝕨</span> <span class='Function'>!</span> <span class='Value'>𝕩</span></code>: Dyad</p>
-<p>Throw an error with message <code><span class='Value'>𝕨</span></code> if <code><span class='Value'>𝕩</span></code> is not 1.</p>
-<pre> <span class='String'>&quot;hi&quot;</span> <span class='Function'>!</span> <span class='Number'>1</span>
-<span class='Number'>1</span>
- <span class='String'>&quot;two&quot;</span> <span class='Function'>!</span> <span class='Number'>2</span>
-<span class='Function'>Error</span><span class='Value'>:</span> <span class='Value'>two</span>
-<span class='Value'>at</span> <span class='String'>&quot;two&quot;</span> <span class='Function'>!</span> <span class='Number'>2</span>
- <span class='Value'>^</span>
- <span class='String'>&quot;hello error&quot;</span> <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
-<span class='Function'>Error</span><span class='Value'>:</span> <span class='Value'>hello</span> <span class='Value'>error</span>
-<span class='Value'>at</span> <span class='String'>&quot;hello error&quot;</span> <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
-</pre>