RosettaCodeData/Task/Assertions/Yabasic/assertions.basic

8 lines
100 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sub assert(a)
2026-04-30 12:34:36 -04:00
if not a then
error "Assertion failed"
end if
2023-07-01 11:58:00 -04:00
end sub
assert(myVar = 42)