A Lisp in 99LOC

51 shikaan 6 8/16/2025, 6:37:17 PM github.com ↗

Comments (6)

nivertech · 2m ago
eqvinox · 3h ago
Holy cow this is —structurally, not just expression— some of the worst C code I have ever seen, with the abuse of the 'double' type, 'T' cast that looks like a declaration, endian dependency, and strict aliasing violations galore… does this even work on a modern compiler? o.O
omoikane · 2h ago
It does not, because there is a syntax error on line 81 (extra close parenthesis):

https://github.com/Robert-van-Engelen/tinylisp/blob/2d0fb35b...

Y_Y · 56m ago
Brought to you by this marvellous commit with the message "update",

https://github.com/Robert-van-Engelen/tinylisp/commit/40c6c0...

OhMeadhbh · 1h ago
Yeah. It's munged to fit in 99 lines.