[Grace-core] finally {return}

Michael Homer mwh at ecs.vuw.ac.nz
Tue Jun 23 01:04:45 PDT 2015


What should this code do?
    method x {
        print "X"
        return 1
    }
    method y {
        print "Y"
        return 2
    }
    method foo {
        try {
            return x
        } finally {
            return y
        }
    }
    print(foo)
-Michael


More information about the Grace-core mailing list