3 lines
79 B
Scheme
3 lines
79 B
Scheme
|
|
(define (main args)
|
||
|
|
(for-each (lambda (arg) (display arg) (newline)) args))
|