RosettaCodeData/Task/Assertions/Zonnon/assertions.zonnon
2023-07-01 13:44:08 -04:00

7 lines
88 B
Text

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