RosettaCodeData/Task/Assertions/Zkl/assertions.zkl

3 lines
118 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
n:=42; (n==42) or throw(Exception.AssertionError);
n=41; (n==42) or throw(Exception.AssertionError("I wanted 42!"));