ox

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

ex-cond-simple1.ox (123B)



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