Am 2012-04-28 um 00:45 schrieb H. Hirzel:
> Hello
>
> Is there a simpler way of writing
>
> Character class selectors includes: #cr
>
> (= test if Character class has method #cr)
Character canUnderstand: #cr
remember, its messages,
=>
('a' respondsTo: #first) == (String canUnderstand: #first)
:)
Best
-Tobias