Login
|
Sign Up
AutoLISP Function Detail
Name:
lambda
Syntax:
(lambda
arg expr
)
Description:
Creates a function that doesn't have a name which consists of an expression that uses the arguments as part of it.
Example(s):
(apply '(lambda (a b c)(* a (- b c)))
'(1 25 14)
)
11