aboutsummaryrefslogtreecommitdiff
path: root/help/assert_assertwithmessage.md
blob: fc90b3673b8c683a3de6c10a8daf7575ef0b1e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/assert_assertwithmessage.html).*

# Exclamation Mark (`!`)
    
## `! 𝕩`: Assert
    
Throw an error if `𝕩` is not 1.
    
           ! 1

           ! 2

           ! "hello"


    
    
## `𝕨 ! 𝕩`: Dyad
    
Throw an error with message `𝕨` if `𝕩` is not 1.
    
           "hi" ! 1

           "two" ! 2

           "hello error" ! "hello"