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

5 lines
184 B
Haskell

import Control.Exception
main = let a = someValue in
assert (a == 42) -- throws AssertionFailed when a is not 42
somethingElse -- what to return when a is 42