dfnxexe.bat

来自「NASA 开发使用的一个专家系统」· Batch 代码 · 共 42 行

BAT
42
字号
(deffunction print-args (?a ?b $?c)   (printout t ?a " " ?b " and " (length ?c) " extras: " ?c crlf))(print-args 1 2)(print-args 1 2 3 4)(print-args 1 2 (mv-append a b c) (mv-append d e f) 1 2 3 4)(deffunction test-return ()   (+ (eval "(gensym)") 2)   TRUE)(test-return)(deffunction test-return ()  1 2 3 4)(test-return)(deffunction factorial (?a)   (if (or (not (integerp ?a)) (< ?a 0)) then      (printout t "Factorial error!" crlf)    else      (if (= ?a 0) then         1       else         (* ?a (factorial (- ?a 1))))))(factorial 5)(* 5 4 3 2)(factorial 0)(factorial 1)(factorial abc)(defglobal ?*cnt* = 0)(deffunction foo ())(deffunction bar ()   (if (< ?*cnt* 10) then      (bind ?*cnt* (+ ?*cnt* 1))      (foo)))(deffunction foo ()  (bar))(foo)(deffunction wildcard-test (?a $?rest)  (printout t ?rest crlf)  (bind ?rest 34)  (printout t ?rest crlf))(wildcard-test 1 2 3 4 5 6)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?