RosettaCodeData/Task/Assertions/RLaB/assertions.rlab
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
196 B
Text

// test if 'a' is 42, and if not stop the execution of the code and print
// some error message
if (a != 42)
{
stop("a is not 42 as expected, therefore I stop until this issue is resolved!");
}