diff options
author | Peter Bex <peter@more-magic.net> | 2018-07-29 19:39:39 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2018-07-29 19:39:39 +0200 |
commit | 776d00c6cd7cabc16f13a18eee54fa2f3f36bf21 (patch) | |
tree | e965a2808a234d83c8a31ef0965f73784db1bac8 /tests/testweb/spiffy-access | |
download | spiffy-776d00c6cd7cabc16f13a18eee54fa2f3f36bf21.tar.gz |
Port to CHICKEN 5
Diffstat (limited to 'tests/testweb/spiffy-access')
-rw-r--r-- | tests/testweb/spiffy-access | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testweb/spiffy-access b/tests/testweb/spiffy-access new file mode 100644 index 0000000..a4ffff5 --- /dev/null +++ b/tests/testweb/spiffy-access @@ -0,0 +1,4 @@ +(lambda (continue) + (let ((counter (with-input-from-file "root-counter" read))) + (with-output-to-file "root-counter" (lambda () (write (add1 counter))))) + (continue)) |