IF STATEMENTS

Basic Syntax


    v = 1

    if v is not 1:
        io("nope")
    else
        io("yep")
    ;

    io(msg) -- prints "nope"