diff options
author | Ben Sima <ben@bsima.me> | 2022-11-02 08:22:10 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-11-02 08:22:10 -0400 |
commit | 445611906a42d20b56dee57573634a6520fa3159 (patch) | |
tree | d69d7ee4f8394b75f636f7157129a68867eeabfd /bs | |
parent | 846116c28c76cbca45601bd5304cabf0105288ba (diff) |
Fix call to 'format'
Diffstat (limited to 'bs')
-rw-r--r-- | bs/string.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs/string.scm b/bs/string.scm index 136572b..58f86a0 100644 --- a/bs/string.scm +++ b/bs/string.scm @@ -57,7 +57,7 @@ (display (substring/shared s start))))))))) (define (to-string x) - (format #f "~a" x)) + (format "~a" x)) (define str (case-lambda |