diff options
author | Ben Sima <ben@bsima.me> | 2022-11-29 13:50:41 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-11-29 13:50:41 -0500 |
commit | 28b99fa065b2b20c24a51c1f73d501191afbd1a7 (patch) | |
tree | 03a33555b875761fc62671d8b39d43e0062e2253 /Biz | |
parent | 5db3bb98b3dae955049f76d67f59b95c41f91cd8 (diff) |
Trivial scheme cleanups
Diffstat (limited to 'Biz')
-rwxr-xr-x | Biz/Bot.scm | 16 |
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))) |