jan tolenaar / kiezellisp / index-of-everything

Name

funcall

Usage

builtin-function

Syntax

(funcall func &rest args)

Description

Returns the value of calling func with arguments args.

make-html > (+ 3 4)
it: 7
make-html > (funcall + 3 4)
it: 7