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.

Cells in PicoLisp (A Tutorial)

3 pointsby mserialmost 5 years ago

1 comment

kazinatoralmost 5 years ago
Mildly amusing:<p>PicoLisp (src&#x2F;pico.c)<p><pre><code> typedef struct heap { cell cells[CELLS]; struct heap *next; } heap; </code></pre> TXR Lisp (gc.c)<p><pre><code> typedef struct heap { obj_t block[HEAP_SIZE]; struct heap *next; } heap_t;</code></pre>