Conditions
Conditions are made using 'if' statements, they use the boolean variables.
For example, this would be comparison:
int x = 5;
int y = 9;
if (x == y){
print("x is equal to y\n");
}
Of course, 5 is not equal to 9, so the text won't be printed.
There is also:
int x = 5;
int y = 9;
if (x != y){
print("x is not equal to y\n");
}
Here, the text will be printed.
There are also bigger and smaller operators:
int x = 5;
int y = 9;
if (x > y){
print("x is bigger than y\n");
}
if (x < y){
print("x is smaller than y\n");
}
[[docVersion]] [[isiVersionCommit:A2]]