diff options
-rw-r--r-- | one/twelve.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/one/twelve.scm b/one/twelve.scm index 4a7f06e..165a66b 100644 --- a/one/twelve.scm +++ b/one/twelve.scm @@ -54,6 +54,5 @@ (define (print-line l level) (let* ((l (map number->string l)) - (spaces (string-join (make-list level " ") "")) - (line (string-append spaces (string-join l)))) + (line (string-join l))) (format #t "~a\n" line))) |