Newer
Older
zweic / tests / four / 03.zwei
@glproj03 glproj03 on 28 Dec 2005 174 bytes wicked cool test file added: script.sh
class A {
    Int x;
}

class B {
    Int x;
    Int equal(B that) {
        return this.x == that.x
    }
}

{
    printInt(new B(1).equal(new A(2)));
    printChar(10);
}