ProphetesAI is thinking...
lisp
Answers
MindMap
Loading...
Sources
lisp
▪ I. lisp, n.1 (lɪsp) [f. lisp v.] The action or an act of lisping.a 1625 Fletcher & Massinger Elder Bro. ii. ii, Love those that love good fashions, Good clothes and rich, they invite men to admire'm That speake the lispe of Court, Oh, 'tis great learning! 1676 G. Etherege Man of Mode i. i, Bell. W...
Oxford English Dictionary
prophetes.ai
Lisp Machine Lisp
Lisp Machine Lisp is a programming language, a dialect of the language Lisp. Lisp Machine Lisp was also the Lisp dialect with the most influence on the design of Common Lisp.
Lisp Machine Lisp branched into three dialects.
wikipedia.org
en.wikipedia.org
CLHS: Macro WHEN, UNLESS - Lisp
Description: when and unless allow the execution of forms to be dependent on a single test-form. whenform, if the test-formyieldstrue, the formsevaluated in order from left to right and the values returned by the are returned from the whenform. Otherwise, if the test-formyieldsfalse, the forms are not evaluated, and the whenform returns nil.
clhs.lisp.se
clhs.lisp.se
lisp
lisp/lɪsp; lɪsp/ nspeech defect in which / s/ is pronounced as / θ/ and / z/ as / ð/ 咬舌(言语缺陷, 发 /s/、 /z/ 音时发成 /W/、 /T/) speak with a lisp 用咬舌音说话 have a bad, pronounced, slight, etc lisp 有很重的、 明显的、 轻微的...咬舌音. lisp, v [I, Tn]speak or say (sth) with a lisp 用咬舌音说(话).
牛津英汉双解词典
prophetes.ai
On Lisp
On Lisp: Advanced Techniques for Common Lisp is a book by Paul Graham on macro programming in Common Lisp. See also
Anaphoric macro
References
External links
On Lisp home page
Free versions of "On Lisp"
On Lisp in pdf-format
On Lisp in multiple HTML files
wikipedia.org
en.wikipedia.org
emacs における site-lisp とは emacs 3rd elisp (~/.emacs.d ) site-lisp : * site-lisp * site-lisp 3rd
site lisp lisp lisp
emacs lisp
emacs
3rd party
emacs
prophetes.ai
Install Lisp Interpreter in Debian Jessie I convinced myself to learn Lisp. I'd like to know of a way to install a Lisp Interpreter on Debian(Jessie). I was reading about clisp but is not in the repositories of Debian.
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
prophetes.ai
xyzzyのlispサイト上からファイルをダウンロードしてくる方法 xyzzy lisp … `site-lisp``grep`` xyzzy lisp HTTP
(unless line (return))
(princ line out)
(unless missing-newline-p (terpri out))))))
* junk-library : site-lisp
prophetes.ai
LISP
和在1998年的一篇论文中,按采用统一的还是分立的函数与值命名空间,将Lisp家族语言划分为Lisp1和Lisp2(或写为Lisp-1和Lisp-2)。
历史上的重要方言
LISP I,是第一个实现。
LISP 1.5,是第一个广泛发行的版本,由McCarthy和其他人在MIT开发。 它拥有用于编程Lisp机器的大型Lisp方言Lisp Machine Lisp的很多特征,但设计上能高效的实现在任何个人计算机或工作站上。Common Lisp是通用编程语言,因而拥有一个大型语言标准,包括很多内建数据类型、函数、宏和其他语言元素,以及一个对象系统,即Common Lisp对象系统。
wikipedia.org
zh.wikipedia.org
LISP - 函数 - Lisp教程 - 易百教程
LISP函数定义. 命名函数defun宏用于定义函数。. 该函数的defun宏需要三个参数:. (defun name (parameter-list) "Optional documentation string." body) 让我们举例说明概念,简单的例子。. 让我们编写了一个名为averagenum,将打印四个数字的平均值的函数。. 我们将会把这些数字作为 ...
www.yiibai.com
LISP - 错误处理(Error Handling)_学习LISP|WIKI教程
事实上,条件比传统编程语言中的异常更通用,因为condition表示任何可能影响各种级别的函数调用堆栈的事件,错误或不存在。.LISP中的条件处理机制以这样的方式处理这种情况,即条件用于发出警告(例如通过打印警告),同时调用堆栈上的上层代码可以继续其工作。
iowiki.com
Lisp - 数据类型 - 菜鸟教程
简述 在 lisp 中,变量没有类型,但数据对象有类型。 lisp 数据类型可以分类为。 标量类型− 例如,数字类型、字符、符号等。 数据结构− 例如,列表、向量、位向量和字符串。 任何变量都可以将任何 lisp 对象作为其值,除非您明确声明了它。 虽然没有必要为 lisp 变量指定数据类型,但 ...
www.cainiaoya.com
GitHub - oshmkufa2010/lisp-interpreter: Python实现的简易Lisp解释器
lisp-interpreter. 这是一个用python实现的lisp子集的解释器 基本思路按照王垠的文章 目前实现了以下特性: 基本四则运算
github.com
LISP - 基本语法 - Lisp教程 - 易百教程
以下是一些要点需要注意:. 在LISP语言的基本数学运算是 +, -, *, 和 /. Lisp实际上是一个函数调用f (x)为 (f x),例如 cos (45)被写入为 cos 45. LISP表达式是不区分大小写的,cos 45 或COS 45是相同的。. LISP尝试计算一切,包括函数的参数。. 只有三种类型的元素是常数 ...
www.yiibai.com
LispKit Lisp
LispKit Lisp是Lisp语言的严格函数式子集(“纯Lisp”),它是作为函数式编程概念的测试台而开发的。它首先使用了对惰性求值的早期经验。在1980年开发者Peter Henderson,出版了用一种变体ALGOL语言写的基于SECD抽象机的实现。 code and files, plus C implementation of SECD machine
Paper about a LispKit LISP implementation in Java , and the implementation itself
学术的编程语言
LISP
wikipedia.org
zh.wikipedia.org