I'd :heart: to have an analog of `stack`'s script feature: https://docs.haskellstack.org/en/stable/GUIDE/#script-interpreter https://www.fpcomplete.com/haskell/tutorial/stack-script/#running-a-script Example: ```sh $ head myscript.ps ``` outputs: ```purescript #!/usr/bin/env spago -- spago script import Prelude ... ``` then ```sh $ chmod u+x myscript.ps $ ./myscript.ps ```