RosettaCodeData/Task/Assertions/ALGOL-W/assertions.alg
2015-11-18 06:14:39 +00:00

6 lines
91 B
Text

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