0072: Missing logical operator
if
0@ == 1
1@ == 1 // error, logical operator is missing
then
//
end
if and
0@ == 1
1@ == 1 // OK
then
//
end
if or
0@ == 1
1@ == 1 // OK
then
//
end
if
0@ == 1 // OK
then
//
endLast updated