TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Actionscript Lisp interpreter

10 点作者 ilike将近 15 年前

1 comment

mahmud将近 15 年前
I can confirm it's attempting to be a tiny CL subset. It has function namespace, symbols, simple numerics macros and backquote.<p>But error detection is non-existent: (ASSOC) crashed it, since it didn't check for arguments even.<p>It's at best, a Lisp <i>reader</i>, not interpreter, even if it does a few things right:<p><pre><code> (mapcar (lambda (x) (+ x x)) (list 1 2 3)) ==&#62; (2 4 6) :-) </code></pre> [Edit:<p>No need for speculation, here is the actual article describing this; submitter should have linked it, instead of just the repl<p><a href="http://www.solve-et-coagula.com/?p=8" rel="nofollow">http://www.solve-et-coagula.com/?p=8</a><p>]