On 31 Dec 2005, at 13:09, ronald kuivila wrote:
To save typing, how about defining a class S that simply redirects methods to Server.default?
This would save typing and work anywhere (unlike the current convention of using the interpreter variable s).
RJK
Would this be the correct way to do this?
S {
*doesNotUnderstand { |selector ...args|
^Server.default.perform(selector, *args);
}
}
Or is there a better way to redirect?
S.