Exclamation Mark (!)
January 30, 2022 ยท View on GitHub
View this file with results and syntax highlighting here.
Exclamation Mark (!)
! ๐ฉ: Assert
Throw an error if ๐ฉ is not 1.
! 1
! 2
! "hello"
๐จ ! ๐ฉ: Assert With Message
Throw an error with message ๐จ if ๐ฉ is not 1.
"hi" ! 1
"two" ! 2
"hello error" ! "hello"