Merge branch 'develop' of ssh://git.journeyman.cc:4022/simon/post-scarcity into develop

This commit is contained in:
Simon Brooke 2025-07-05 14:10:40 +01:00
commit 34ef8cd4c1
3 changed files with 80 additions and 2 deletions

View file

@ -121,6 +121,30 @@
*/
#define LOOPTV 1347374924
/**
* @brief Tag for a lazy cons cell.
*
* A lazy cons cell is like a cons cell, but lazy.
*
*/
#define LAZYCONSTAG "LZYC"
/**
* @brief Tag for a lazy string cell.
*
* A lazy string cell is like a string cell, but lazy.
*
*/
#define LAZYSTRTAG "LZYS"
/**
* @brief Tag for a lazy worker cell.
*
* A lazy
*
*/
#define LAZYWRKRTAG "WRKR"
/**
* The special cons cell at address {0,0} whose car and cdr both point to
* itself.