ox

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

ex-bool.ox (108B)



void main() {

    print("true is true");
    print(true);
    print("false is false");
    print(false);
}