Tutorial Comparison - MarkyVasconcelos/cajuscript GitHub Wiki
#summary All comparison operators allowed.
===Comparison operators===
All comparison operators allowed. {{{ // = Equal to (x = y)
// ! Not equal to
(x ! y)
// < Less Than
(x < y)
// > Greater Than
(x > y)
// < Less Than or Equal To
(x <= y)
// > Greater Than or Equal To
(x >= y)
}}}