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.

The Lisp 2 Project (2018)

83 pointsby mhdhnalmost 5 years ago

6 comments

gmfawcettalmost 5 years ago
I love a good history lesson. :)<p>In case it helps anyone: this is about a version 2 of the original LISP language. It&#x27;s not about the distinction between a &quot;Lisp-1&quot; and a &quot;Lisp-2&quot;, which describe two different families of Lisp languages (those with a single namespace, like Scheme; and those with separate namespaces for values and functions, like Common Lisp).
mncharityalmost 5 years ago
And a follow-up post is &quot;GTL is a LISP 2 implementation&quot; <a href="https:&#x2F;&#x2F;mcjones.org&#x2F;dustydecks&#x2F;archives&#x2F;2018&#x2F;06&#x2F;04&#x2F;1001&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mcjones.org&#x2F;dustydecks&#x2F;archives&#x2F;2018&#x2F;06&#x2F;04&#x2F;1001&#x2F;</a> . Which I note only because it&#x27;s easily overlooked if one doesn&#x27;t scroll down far enough.
jandresealmost 5 years ago
When your language has to include a built-in swapper to manage the memory you know you are suffering from the second system effect.<p>&gt; The Q-32 version was so cramped for space (approximately 48,000 48-bit words) that an application-level swapper was written: If a function was needed but not in memory 1) if memory space was available, the function was paged in by LISP from an ordinary data file, 2) if space was not available, the memory manager tried to create space by shuffling the in-memory area holding binary code to make space, if this did not work some in-memory code was excised or the GC invoked then 3) the dynamic loader read the binary code into memory.
评论 #23492778 未加载
评论 #23492673 未加载
dunefoxalmost 5 years ago
From the title I thought that a new version of common lisp was being made.
评论 #23493284 未加载
lbhdcalmost 5 years ago
<a href="http:&#x2F;&#x2F;t3x.org&#x2F;lisp64k&#x2F;index.html" rel="nofollow">http:&#x2F;&#x2F;t3x.org&#x2F;lisp64k&#x2F;index.html</a><p>Great series of blog posts exploring what you can do with early lisp.
crazypythonalmost 5 years ago
I wonder how far one could get combining the strengths of Haskell&#x27;s bidirectional type system and Dlang&#x27;s (<a href="http:&#x2F;&#x2F;dlang.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;dlang.org&#x2F;</a>) efficiency into Lisp to get a fast language.