RosettaCodeData/Task/Assertions/Zkl/assertions.zkl
2017-09-25 22:28:19 +02: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!"));