logiacal and

Logical expression "and" used as flow control condition.

Example:
x=10:y=5
if x=10 and y=0 then
    print("and function don't work!!")
end if
if x=10 and y=5 then
    print("and function work!!")
end if

See also or, not and xor commands.