TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Actionscript Lisp interpreter

10 pointsby ilikealmost 15 years ago

1 comment

mahmudalmost 15 years ago
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>]