[ Object ] respond: [ Text ] and: [ Text ] and: [ Text ]

>> x := Object new.
x on: ['respond:and:and:'] do: { :a :b :c <- (a + b + c).
}.
Out write: (x abc: ['def'] ghi: ['jkl']), stop.
abc:ghi:defjkl