On 2012-10-06 09:44AM, Andrew Pennebaker wrote: >Can we treat shebangs like comments, so that gforth programs can be run >using dot slash notation in Unix? > >hello.fs: > >#!/usr/bin/env gforth
We already do; you just need a space after the shebang: #! /usr/bin/env gforth --Josh
