aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert "attempt to read numbers with a readtable"Gravatar Peter McGoron 2024-10-131-1/+0
| | | | This reverts commit 8d5a93a2dafd34b13b196dbae803cb9ffffa5e00.
* attempt to read numbers with a readtableGravatar Peter McGoron 2024-10-051-0/+1
| | | | | | | | | | | | Saving this because I might use it. The implementation is fragile. SCHEME numbers are in infix notation, so forcing them into the readtable implementation (which works best for prefix operators) is like fitting a square peg into a round hole. I'm going to try tokenizing the expression and parsing using an operator-precedence parser (things like "+", "@", and "." are infix operators).
* readtable: add listsGravatar Peter McGoron 2024-09-201-1/+1
|
* readtable: case foldingGravatar Peter McGoron 2024-09-071-6/+5
|
* readtables, first passGravatar Peter McGoron 2024-09-071-4/+16
|
* miniscm: add mutable string emulation and char->integerGravatar Peter McGoron 2024-08-261-2/+2
|
* minischeme: add charGravatar Peter McGoron 2024-08-221-0/+2
|
* add doubly linked lists, tests, minischemeGravatar Peter McGoron 2024-08-221-0/+24