chickadee » ck-macros » c-call

(c-call '(OP ...) X ...) → resultsyntax

Like c-eval, but adds the given arguments on to the end of the operation. Analogous to a lambda call in normal Scheme code.

(ck () (c-quote (c-call '(c-cons 'a) 'b)))
;; ==> '(a . b)