RosettaCodeData/Task/Assertions/00-TASK.txt

10 lines
280 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Assertions are a way of breaking out of code when there is an error or an unexpected input.
Some languages throw [[exceptions]] and some treat it as a break point.
;Task:
Show an assertion in your language by asserting that an integer variable is equal to '''42'''.
<br><br>