Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
history.c
Go to the documentation of this file.
1/*
2 * history.c
3 *
4 * Maintain, and recall, a history of things which have been read from standard
5 * input. Necessarily the history must be stored on the user session, and not be
6 * global.
7 *
8 * I *think* history will be maintained as a list of forms, not of strings, so
9 * only forms which have successfully been read can be recalled, and forms which
10 * have not been completed when the history function is invoked will be lost.
11 *
12 * (c) 2025 Simon Brooke <simon@journeyman.cc>
13 * Licensed under GPL version 2.0, or, at your option, any later version.
14 */