ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

ex-cond-simple2.ox (164B)



// more conditional test, else case should be taken

void main() {
    int a = 1;
    if (a == 2) {
        print("no");
    } else {
        print("yes");
    }
}