objs.scm added by Yehowshua on Thu Aug 12 06:05:07 2021

(import coops)
(import coops-primitive-objects)


(define-generic (+ (x <string>) (y <string>))
  (string-append x y))

(+ "abc" "de")