Welcome to the CHICKEN Scheme pasting service
objs.scm added by Yehowshua on Thu Aug 12 06:52:45 2021
(import coops) (import coops-primitive-objects) (define-generic (+ x y)) (define-method (+ (x <number>) (y <number>)) + x y) (define-method (+ (x <string>) (y <string>)) (string-append x y)) (print (+ "abc" "de"))