From a89d6c82e981fec7d6e4c975e083d2b9e04467ad Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Mon, 1 May 2023 07:56:42 -0700 Subject: Rewrite most of the compiler. This represents a major step back in terms of functionality, and amount of code. The latter I think constitutes a major win. Next steps are to reimplement syntax-rules, call/cc, and call-with-values. --- testdata/exit.scheme | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 testdata/exit.scheme (limited to 'testdata/exit.scheme') diff --git a/testdata/exit.scheme b/testdata/exit.scheme new file mode 100644 index 0000000..09fbdc2 --- /dev/null +++ b/testdata/exit.scheme @@ -0,0 +1,3 @@ +; expected result: exit with status 27. +(import (csc builtins)) +(call-builtin exit 27) -- cgit v1.3.1