cl:let
说明:commonlisp中的let,在autolisp中需要在参数前加quote,当body为多条语句时需要用 progn 包裹。
用法:
(cl:let bindings body)
参数:1 bindings : 未识别定义;2 body : 未识别定义;
返回值:any
示例:
(let '((a 3) (b 5)) '(* a b)) => 15