7 lines
63 B
Text
7 lines
63 B
Text
|
|
integer x;
|
||
|
|
|
||
|
|
x = 41;
|
||
|
|
if (x != 42) {
|
||
|
|
error("x is not 42");
|
||
|
|
}
|