Logical Operators
if ((x == 5) and (y == 10)) then
message("x is 5 and y is 10");
end if;if ((x == 5) or (y == 10)) then
message("x is 5 or y is 10");
end if;if (!(x == 5)) then
message("x is not 5");
end if;Last updated
if ((x == 5) and (y == 10)) then
message("x is 5 and y is 10");
end if;if ((x == 5) or (y == 10)) then
message("x is 5 or y is 10");
end if;if (!(x == 5)) then
message("x is not 5");
end if;Last updated