fun send(rcv, msg, args) {
cls = rcv.isa
if (cls.isa == STD_CLS)
method = builtin_lookup(rcv, msg)
else
method = send(cls, "lookup", msg)
method(rcv, args)
}
-
-
Save fogus/2f94d474aeecef1e223a62a5a91fa62b to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment