RosettaCodeData/Task/Assertions/ALGOL-W/assertions.alg

7 lines
91 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
begin
integer a;
a := 43;
assert a = 42;
write( "this won't appear" )
end.