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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

First Report on the Pre-Scheme Restoration

47 点作者 paroneayea7 个月前

3 条评论

linguae7 个月前
This is excellent news, and also quite timely! I am working on a side project where I want to build an exokernel, and recently (earlier this week, in fact) I decided to use Pre-Scheme as a base for implementing this exokernel and other low-level libraries that handle functionality such as memory management. Eventually I want to be able to host a language like Common Lisp, or at the bare minimum, something like Self (which can be thought of as Smalltalk without classes; see <a href="https:&#x2F;&#x2F;selflanguage.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;selflanguage.org&#x2F;</a>) on top of Pre-Scheme. This is all part of explorations of how to build a modern OS inspired by the Lisp and Smalltalk environments of the 1980s but updated to address modern concerns such as security and multi-core processors.
评论 #41810767 未加载
评论 #41805956 未加载
ristos7 个月前
Very nice!<p>I&#x27;m looking to use prescheme for low level code that needs more precise control where chibi scheme or guile isn&#x27;t a good fit. I&#x27;m also hoping at some point that I have the time to write a borrow checker on top of prescheme, which might be a subset of prescheme but would still fit many use cases, so that it can be used instead of Rust. And also to create a transpilation step that creates optimizations, that would then ideally be proved. And then that way the borrow checked code with optimizations can be all transpiled by prescheme into C, and then tiny c compiler can compile it unoptimized into straightforward assembly. The goal would be to have verified code that can also be easily hand audited as well. LLMs just make all this stuff so much more possible because of how much faster we can iterate. Fun times for coding!
jayemar7 个月前
Hadn&#x27;t heard of Pre-Scheme so I looked through the site a bit and was surprised to see this:<p>&gt; Pre-Scheme only supports data-types which are supported natively by C. There are no lists,<p>A lisp without lists, very interesting project!