RosettaCodeData/Task/Assertions/Zonnon/assertions.zonnon
2026-04-30 12:34:36 -04:00

7 lines
94 B
Text

module Assertions;
var
a: integer;
begin
a := 40;
assert(a = 42,100)
end Assertions.