Operators comparing numbers
x = 2
y = 3
z = 3
x > y # FALSE
x < y # TRUE
x <= y # TRUE
x >= y # FALSE
x == y # FALSE
x != y # TRUE
y == z # TRUE
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
x = 2
y = 3
z = 3
x > y # FALSE
x < y # TRUE
x <= y # TRUE
x >= y # FALSE
x == y # FALSE
x != y # TRUE
y == z # TRUE