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.

Ask HN: Import Common Lisp Code into Parenscript

2 pointsby tresilienceover 4 years ago
I have trouble understanding what parenscript does and not does.<p>Am I &quot;out on Mars&quot; in the Lisp world with parenscript or can I also make use of other Common Lisp Code easily like trivia etc? What are people actually doing with parenscript, develop everything themselves from &quot;the ground up&quot;?<p>Thanks

2 comments

remexreover 4 years ago
Most Lisp libraries won&#x27;t automatically work with Parenscript -- think of Parenscript as just being more Lisp-like syntax for JS, rather than a compile from Lisp to JS. It&#x27;s quite useful if you want to dynamically generate JS, or wish JS had macros, but it won&#x27;t give you trivia for free.<p>Hopefully some day there&#x27;ll be a production-quality Lisp implementation that runs in WebAssembly... Though, I wonder if you could hack together ECL and emscripten?
评论 #24650044 未加载
jinwoo68over 4 years ago
There&#x27;s JSCL [1], an implementation of Common Lisp in JS. It&#x27;s not a full implementation but you would be able to use some CL libraries, I guess.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;jscl-project&#x2F;jscl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jscl-project&#x2F;jscl</a>
评论 #24682610 未加载