Add newline to end of .rkt file

This commit is contained in:
retropikzel 2025-06-17 08:07:56 +03:00
parent 232f2fe6e0
commit 0482dc7401

View file

@ -1939,9 +1939,12 @@
(string-append path-without-suffix "rkt") (string-append path-without-suffix "rkt")
(lambda () (lambda ()
(map display (map display
(list "#lang r7rs" #\newline (list "#lang r7rs"
"(import (scheme base))" #\newline #\newline
"(include \"" (path-strip-directory path) "\")")))))))) "(import (scheme base))"
#\newline
"(include \"" (path-strip-directory path) "\")"
#\newline))))))))
(default-installer impl cfg library dir))) (default-installer impl cfg library dir)))
;; installers should return the list of installed files ;; installers should return the list of installed files