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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

WebLisp: A Lisp Interpreter that runs inside the browser

27 点作者 fluffster大约 16 年前

7 条评论

mpk大约 16 年前
And a quick shout-out to JSLisp : <a href="http://joeganley.com/code/jslisp.html" rel="nofollow">http://joeganley.com/code/jslisp.html</a> . That was an educational piece of JS for me.
评论 #605592 未加载
评论 #604934 未加载
评论 #605117 未加载
pmarin大约 16 年前
Arclite is a subset of Arc written in Javascript.<p><a href="http://jonathan.tang.name/files/arclite/index.html" rel="nofollow">http://jonathan.tang.name/files/arclite/index.html</a>
评论 #605114 未加载
owinebarger大约 16 年前
Sweet. It appears to have proper tail recursion.<p>(define (fib n) (fib-help n (lambda (fn fn-1) fn)))<p>(define (fib-help n k) (if (&#60;= n 1) (k 1 1) (fib-help (- n 1) (lambda (fn-1 fn-2) (k (+ fn-1 fn-2) fn-1)))))<p>(fib 1000)
misuba大约 16 年前
So, are there any in-browser lisps that, you know, do something? Maybe one that plays in the Pipes space, letting you work with feeds of various sorts?
softbuilder大约 16 年前
<a href="http://en.wikipedia.org/wiki/Greenspun%27s_Tenth_Rule" rel="nofollow">http://en.wikipedia.org/wiki/Greenspun%27s_Tenth_Rule</a>
评论 #605029 未加载
Dilpil大约 16 年前
How many of these are there anyway?
评论 #604674 未加载
uninverted大约 16 年前
No macros?