ox

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

ex-blocks-inner.ox (146B)



void main() {

    int x = 1;
    {
        int y = 2;
        print(x);
        print(y);
    }
    print(x);
    print("should print 1 2 1");
}