How do you run Scheme programs from the terminal in linux(ubuntu)? Also how to accept arguments from the command-line in a Scheme program?
Edit: Im using the DrSc
This solution works for me
#! /usr/bin/env guile !# (display "hello") (newline)