申请试用
HOT
登录
注册
 
Lisp 2 rules and natural language

Lisp 2 rules and natural language

PrimaryNode
/
发布于
/
1760
人观看
LISP – (LISt Processing) 1. Parenthesized prefix notation: (+ 2 4) 2. Expressions can be nested: (- (+ 2 3 4 5) (* 2 5)) 3. Evaluation rule: apply function to value of arguments. 4. Symbolic computation: other types Primitive: numbers, characters, strings, symbols. Compound: lists. (append '(a b) '(c d)) --> (a b c d) Quote: block the evaluation of the following expression. '(a b) --> (a b) (a b) --> error: a undefined function. 5. Self-evaluating types: numbers, characters, strings. 6. Symbols as variables - not case sensitive.
15点赞
2收藏
0下载
相关推荐
确认
3秒后跳转登录页面
去登陆