We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This core function sends messages to objects. The dot operator is syntactic sugar for send.
send
foo.bar ; (send foo (quote bar))
send is most useful when calculating what message to send an object dynamically.
(send foo (if predicate 'bar 'baz))