RosettaCodeData/Task/Assertions/Zonnon/assertions.zonnon

8 lines
88 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
module Assertions;
var
a: integer;
begin
a := 40;
assert(a = 42,100)
end Assertions.