Eas (Easy Application Script) by Molaskes

Syntax Guide:23. Boolean Logic

and: , or: | xor: ||
Boolean And (aka logical and): A,B Boolean Or (aka logical or): A|B Boolean Xor (aka logical xor): A||B If a condition is true, the term returns 1, otherwise it returns 0.
Eas:
a,b
a|b
a||b
JS:
a&&b
a||b
!a^!b
PHP:
$a&&$b
$a||$b
$a xor $b
23. Boolean Logic
D Download Eas 4B
C Contact
Esc Search / Table of Contents