ox

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

ex-closure.ox (80B)



void main() {

    void hello() {
        print("hello");
    }

    hello();
}