Comparison operators in Flogram

Comparison operators in Flogram function like math does but instead return either a TRUE or FALSE boolean value.

Comparison operators are used to compare two numbers to each other.

These include:

<, <=, ==, >=, <
fn main():
    draw(1 > 10)
    draw(1 >= 10)
    draw(1 < 10)
    draw(1 <= 10)
    
    draw(10 == 10)
    draw(1 == 10)

Last updated on Jun 07, 2024

Terminal