From 2c50d91ec7eb8bc7890befe874a0b93729c2437e Mon Sep 17 00:00:00 2001 From: razetime Date: Wed, 19 Jan 2022 22:48:16 +0530 Subject: add h2s remove copied output, ascii filenames --- docs/help/assert_assertwithmsg.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/help/assert_assertwithmsg.html (limited to 'docs/help/assert_assertwithmsg.html') diff --git a/docs/help/assert_assertwithmsg.html b/docs/help/assert_assertwithmsg.html new file mode 100644 index 00000000..e172ecbd --- /dev/null +++ b/docs/help/assert_assertwithmsg.html @@ -0,0 +1,29 @@ + + + + BQN: Exclamation Mark (`!`) + + +

Exclamation Mark (!)

+

! 𝕩: Assert

+

Throw an error if 𝕩 is not 1.

+↗️
       ! 1
+1
+
+       ! 2
+Error: Assertion error
+
+       ! "hello"
+Error: hello
+
+

𝕨 ! 𝕩: Dyad

+

Throw an error with message 𝕨 if 𝕩 is not 1.

+↗️
       "hi" ! 1
+1
+
+       "two" ! 2
+Error: two
+
+       "hello error" ! "hello"
+Error: hello error
+
-- cgit v1.2.3