RosettaCodeData/Task/Assertions/Zonnon/assertions.zonnon

8 lines
94 B
Text
Raw Permalink Normal View History

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