summaryrefslogtreecommitdiff
path: root/Biz/Bot.scm
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Bot.scm')
-rwxr-xr-xBiz/Bot.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/Biz/Bot.scm b/Biz/Bot.scm
index 7fa5933..af06585 100755
--- a/Biz/Bot.scm
+++ b/Biz/Bot.scm
@@ -4,14 +4,14 @@
;;
;; tail -f \#biz/out | guile -L $BIZ_ROOT -s Biz/Bot.scm
;;
-(define-module (Biz Bot)
- #:use-module (ice-9 rdelim)
- #:use-module (ice-9 match)
- #:use-module (ice-9 regex)
- #:use-module (ice-9 receive)
- #:use-module (bs core)
- #:use-module ((bs string) #:prefix string.)
- #:export (main))
+(define-module (Biz Bot) #:export (main))
+
+(import (ice-9 rdelim))
+(import (ice-9 match))
+(import (ice-9 regex))
+(import (ice-9 receive))
+(import (bs core))
+(import (prefix (bs string) string.))
(define (log msg)
(display msg (current-error-port)))