A message to an object, to be evaluated later.
receiver |
the receiver of the message |
selector |
the method to be called |
args |
arguments to the call |
the object to which the message is relayed
the method to be called
the arguments to the call
send the message to the receiver and call the selector with the arguments
... moreArgs |
// an object
a = 36
// a message to the object
m = Message(a, \sqrt)
// deliver the message
m.value
// -> 6
// a message that lacks an argument
m = Message(a, '+')
// evaluate with the argument
m.value(6)
// -> 42
m.value(-13)
// -> 23