ox

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

ex-for-simple2.ox (257B)



void main() {
    ~int x;
    print("initial value:");
    // do we initialise at 0 or not?
    print(x);
    for(int x = 3; x < 5; x++) {
        //TODO the x defined in the for init is never actually used
        print(x);
        print("bozo!");
    }
}