5 lines
63 B
Scheme
5 lines
63 B
Scheme
|
(define (displayln x)
|
||
|
(begin
|
||
|
(display x)
|
||
|
(newline)))
|