8 lines
92 B
Text
8 lines
92 B
Text
|
|
sub assert(a)
|
||
|
|
if not a then
|
||
|
|
error "Assertion failed"
|
||
|
|
end if
|
||
|
|
end sub
|
||
|
|
|
||
|
|
assert(myVar = 42)
|