文件名称:leetcoderust-learn-clisp:学习CommonLisp
文件大小:9KB
文件格式:ZIP
更新时间:2024-07-20 11:55:27
系统开源
leetcode 锈Common Lisp 的注意事项 参考 Lisp 之地(书籍) 基本的 启动 REPL: > clisp 关闭它: [x]> (exit) or (quit) 在 REPL 中加载文件: [x]> (load 'FILE-NAME.lisp) 你可以省略.lisp扩展名 退出 REPL: [x]> (exit)或(quit) 字 clisp : 启动普通 lisp 的命令 REPL:Read-eval-event-loop ... 输入“clisp”时的命令行 alist: 关联列表(连想配列) cons-cell:lisp 的基本数据结构 语法/语法 功能: defun ( defun square (val) (* val val) ) 全局变量: defparameter , defvar ; ; you can overwrite the value: ( defparameter *foo* 3 ) ; ; you canNOT overwrite it: ( defvar *bar* 3 ) defvar例子: > ( defvar *b* 5 ) *
【文件预览】:
learn-clisp-master
----README.md(10KB)
----practice()
--------congestioncity.lisp(257B)
--------_chapters_(121B)
--------graph-util.lisp(2KB)
--------wizardhouse.lisp(3KB)
--------gamerepl.lisp(2KB)
----DiveIntoList.md(2KB)