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

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