RosettaCodeData/Task/Assertions/Yabasic/assertions.basic
2026-04-30 12:34:36 -04:00

7 lines
100 B
Text

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