Skip to content

forward to

TurtleKitty edited this page May 18, 2019 · 1 revision

forward-to

This procedure takes an object and returns a procedure that takes a message and forwards it to the object.

(def forwarder (forward-to 7))

(forwarder 'inc)  ; 8
(forwarder 'dec)  ; 6

Clone this wiki locally