= Scheme = {{{ hello.scm --------------- #!/bin/sh :; exec gosh -- "$0" "$@" (define (main args) (print "Hello, world.") 0) --------------- }}} ----