Skip to content
TurtleKitty edited this page May 11, 2019 · 3 revisions

bind

Bind multiple names with an expression that returns a list.

(bind (a b c)
   (list 2 3 (+ 2 3)))

(and (= a 2) (= b 3) (= c 5)) ; true
Clone this wiki locally