From 28b99fa065b2b20c24a51c1f73d501191afbd1a7 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 29 Nov 2022 13:50:41 -0500 Subject: Trivial scheme cleanups --- Biz/Bot.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Biz/Bot.scm') 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))) -- cgit v1.2.3