summaryrefslogtreecommitdiff
path: root/scheme
diff options
context:
space:
mode:
authormichele.simionato <devnull@localhost>2009-04-15 14:40:51 +0000
committermichele.simionato <devnull@localhost>2009-04-15 14:40:51 +0000
commitdd56d0df496a571d38cc018ba7cc5fddf0314340 (patch)
treeceeb848ffd7db94e04287e34b3563b5b6528acdd /scheme
parent80eb303389346be3c9cb67cff1dfdc14b79270cc (diff)
downloadmicheles-dd56d0df496a571d38cc018ba7cc5fddf0314340.tar.gz
Work on the Scheme module system
Diffstat (limited to 'scheme')
-rw-r--r--scheme/experimental/registry.sls3
1 files changed, 2 insertions, 1 deletions
diff --git a/scheme/experimental/registry.sls b/scheme/experimental/registry.sls
index cb92f15..c8f06c1 100644
--- a/scheme/experimental/registry.sls
+++ b/scheme/experimental/registry.sls
@@ -10,5 +10,6 @@
(define (register id)
(printf "registering ~a\n" id)
- (set! _registry (append _registry (list id))))
+ (set! _registry (append _registry (list id)))
+ _registry)
)