We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This core function sends messages to objects. In fact, the dot operator is just syntactic sugar for 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))