aboutsummaryrefslogtreecommitdiffstats
path: root/csc/list-test.csc
AgeCommit message (Collapse)AuthorFilesLines
2022-07-26Fix a potential R7RS issue.Rose Hogenson1-67/+69
I was using the load procedure to load a program, but by a strict reading of R7RS, load can only handle expressions and definitions, not imports. So instead I'm defining each test as a library, and using the environment procedure to load them at runtime.
2022-06-28Improve CPS.Rose Hogenson1-0/+6
Goodbye soup. Thanks to "Compiling with Continuations" by Appel.
2022-06-26Finish CPS.Rose Hogenson1-0/+13
Wow we actually finished CPS. Next is closure conversion, then codegen, and then we should be able to run some end to end tests. Then we can look at garbage collection, and from there continue building features down the long road to self hosting.
2022-01-24Finish the loop macro.Rose Hogenson1-0/+7
I also cleaned everything up a lot. Maybe there are still bugs because the test coverage is awful, but for now I'm happy to be done.
2022-01-11Move scheme compiler into a separate directory.Rose Hogenson1-0/+95