Compare commits

...

3 Commits

Author SHA1 Message Date
938fd7d41b Use spaces instead of tabs for indentation 2024-03-13 17:21:14 +00:00
1381f0b881 Use unless instead of when 2024-03-13 17:20:56 +00:00
085736da27 Fix indentation 2024-03-13 17:20:49 +00:00

View File

@@ -39,7 +39,7 @@
(define (foreach-line thunk) (define (foreach-line thunk)
(let loop () (let loop ()
(let ((line (get-line (current-input-port)))) (let ((line (get-line (current-input-port))))
(when (not (eof-object? line)) (unless (eof-object? line)
(display (thunk line)) (display (thunk line))
(loop))))) (loop)))))