RosettaCodeData/Task/Assertions/AutoHotkey/assertions-1.ahk

9 lines
135 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a := 42
Assert(a > 10)
Assert(a < 42) ; throws exception
Assert(bool){
If !bool
throw Exception("Expression false", -1)
}