mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 06:39:17 +02:00
6 lines
133 B
Scheme
6 lines
133 B
Scheme
|
|
(define (write-line str . o)
|
|
(let ((out (if (pair? o) (car o) (current-output-port))))
|
|
(display str out)
|
|
(newline out)))
|
|
|