#!/usr/bin/env <executable>
where <executable> can recover several specified names. STklos uses only the name stklos-script for <executable>.
Here is an example of the classical echo command (without option) in Scheme:
#!/usr/bin/env stklos-script
(define (main arguments)
(for-each (lambda (x) (display x) (display #\space))
(cdr arguments))
(newline)
0)