RosettaCodeData/Task/Assertions/ALGOL-W/assertions.alg
2023-07-01 13:44:08 -04:00

6 lines
91 B
Text

begin
integer a;
a := 43;
assert a = 42;
write( "this won't appear" )
end.