RosettaCodeData/Task/Send-an-unknown-method-call/Smalltalk/send-an-unknown-method-call.st
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

9 lines
183 B
Smalltalk

Object subclass: #Example.
Example extend [
foo: x [
^ 42 + x ] ].
symbol := 'foo:' asSymbol. " same as symbol := #foo: "
Example new perform: symbol with: 5. " returns 47 "