[bugfix] print should print a newline to given port
This commit is contained in:
parent
a15ec868ba
commit
1a891036f2
|
@ -15,9 +15,10 @@
|
||||||
(string-append line (loop (read-line))))))))
|
(string-append line (loop (read-line))))))))
|
||||||
|
|
||||||
(define (print obj . port)
|
(define (print obj . port)
|
||||||
(write obj (if (null? port) (current-output-port) (car port)))
|
(let ((port (if (null? port) (current-output-port) (car port))))
|
||||||
(newline)
|
(write obj port)
|
||||||
obj)
|
(newline port)
|
||||||
|
obj))
|
||||||
|
|
||||||
(define (print-help)
|
(define (print-help)
|
||||||
(display "picrin scheme\n")
|
(display "picrin scheme\n")
|
||||||
|
|
Loading…
Reference in New Issue