RosettaCodeData/Task/Assertions/Yabasic/assertions.basic
2023-07-01 13:44:08 -04:00

7 lines
92 B
Text

sub assert(a)
if not a then
error "Assertion failed"
end if
end sub
assert(myVar = 42)