diff options
author | Case Duckworth | 2024-06-03 16:57:03 -0500 |
---|---|---|
committer | Case Duckworth | 2024-06-03 16:57:03 -0500 |
commit | 9bad311199815592de98b8fe424a09e90ee66ee0 (patch) | |
tree | 7f45d9d90720297cd7ad7231ce7205bd54e8ed88 | |
parent | Fix html/other sourcing; re-scramble Makefile (diff) | |
download | jimmy-9bad311199815592de98b8fe424a09e90ee66ee0.tar.gz jimmy-9bad311199815592de98b8fe424a09e90ee66ee0.zip |
Add repl.scm
-rw-r--r-- | repl.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/repl.scm b/repl.scm new file mode 100644 index 0000000..28c66b7 --- /dev/null +++ b/repl.scm | |||
@@ -0,0 +1,11 @@ | |||
1 | ;;; repl -- set up the repl | ||
2 | |||
3 | (import (chicken file)) | ||
4 | |||
5 | (for-each load (glob "build/*")) | ||
6 | |||
7 | (import (jimmy util) | ||
8 | (jimmy emit) | ||
9 | (jimmy read) | ||
10 | (jimmy html) | ||
11 | (jimmy wrap)) | ||