RosettaCodeData/Task/Assertions/Zkl/assertions.zkl

3 lines
118 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
n:=42; (n==42) or throw(Exception.AssertionError);
n=41; (n==42) or throw(Exception.AssertionError("I wanted 42!"));