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

8 lines
219 B
Text

class AssertionError < Exception
end
def assert(predicate : Bool, msg = "The asserted condition was false")
raise AssertionError.new(msg) unless predicate
end
assert(12 == 42, "It appears that 12 doesn't equal 42")