RosettaCodeData/Task/Assertions/Wren/assertions-2.wren
2023-07-01 13:44:08 -04:00

8 lines
195 B
Text

import "./debug" for Debug
var x = 42
Debug.assert("x == 42", 4, x == 42) // fine
Debug.off
Debug.assert("x > 42", 6, x > 42) // no error
Debug.on
Debug.assert("x > 42", 8, x > 42) // error