Node:Methods, Next:User-defined types, Previous:Running GOOPS, Up:Getting Started
(define-method (+ (x <string>) (y <string>)) (string-append x y)) (+ 1 2) --> 3 (+ "abc" "de") --> "abcde"