RosettaCodeData/Task/Assertions/RLaB/assertions.rlab
2023-07-01 13:44:08 -04: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!");
}