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

2 lines
118 B
Text

n:=42; (n==42) or throw(Exception.AssertionError);
n=41; (n==42) or throw(Exception.AssertionError("I wanted 42!"));