Settings

Theme

Bootstrapping Lisp in a Boot Sector

github.com

104 points by gone35 8 months ago · 6 comments

Reader

cassepipe 8 months ago

Here is the related blog post: https://justine.lol/sectorlisp/

dang 8 months ago

Related:

Sectorlisp - https://news.ycombinator.com/item?id=34372765 - Jan 2023 (8 comments)

  • johnisgood 8 months ago

    > But without (for example) basic integer/float types and operations. So you can’t do (+ 1 2).

    So you cannot do "(+ 1 2)"? It is being compared to Forth, except in Forth you can do "1 2 +", and much more.

    • jecel 8 months ago

      While (+ 1 2) doesn't work in the basic system, it is possible to extend it entirely in Lisp so that it does work. You could use Church numerals to represent the numbers, for example. I once did it by representing numbers as lists of hex digits because I was writing a 6809 assembler in Lisp and hex math made it convenient.

gitroom 8 months ago

damn, pulling off lisp in a boot sector just sounds wild to me, like how much can you actually do with just that tiny space? you think constraints like that push better solutions or just make stuff harder for no reason?

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection