diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-03-08 17:54:39 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-03-08 17:54:39 -0500 |
commit | 6a60f02c94d1131e78c7f76243077f8aaff6056a (patch) | |
tree | ce717753a14acd8f2a0d2de58440066002814f65 /examples | |
parent | 6dcbbb60d29408e6db804cb5b8bca3c4971055dc (diff) |
Integrate cooperative REPL server.
* 2d/repl.scm: New file.
* 2d/repl/repl.scm: Delete it.
* 2d/repl/server.scm: Delete it.
* Makfile.am (REPL_SOURCES): Delete it.
(SOURCES): Add '2d/repl.scm'.
* examples/common.scm: Use cooperative REPL module.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/common.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/common.scm b/examples/common.scm index b4efb1f..17cd888 100644 --- a/examples/common.scm +++ b/examples/common.scm @@ -2,11 +2,9 @@ (2d fps) (2d game) (2d keyboard) + (2d repl) (2d signal) - (2d window) - (2d repl server)) - -(spawn-server) + (2d window)) (add-hook! key-press-hook (lambda (key unicode) (when (eq? key 'escape) |