# Less

This operator is used in *\<conditional>* expressions. Use it to check if a value is less than other.\
\
**Symbol**: <

### **Examples**

* *Example 1*

5 < 10\
**Result** = TRUE

* *Example 2*

10 < 5\
**Result** = FALSE

* *Example 3*

"Kalipso" < "Kalipsa"\
**Result** = FALSE

* *Example 4*

"Kalipso" < "kalipso"\
**Result** = FALSE

* *Example 5*

"Kalipso" < "kalipsa"\
**Result** = TRUE
