( scratchpad ) QUALIFIED: multi-methods ( scratchpad ) multi-methods:GENERIC: plus ( obj1 obj2 -- obj3 ) METHOD: plus { real real } + ; METHOD: plus { string string } append ; ( scratchpad ) 1 2 plus . 3 ( scratchpad ) "hello " "world" plus . "hello world"