A better "shebang" would be ``` ///bin/true; /usr/bin/c "$0" "$*"; exit $? ``` as it would keep file compileable with normal `gcc` invocation. See example of this [here](https://github.com/yugr/gcc-interp/blob/f64596f81fe4a05590d31598c89452834cbe9b74/gcci#L126) (also [discussion](https://stackoverflow.com/questions/7707178/whats-the-appropriate-go-shebang-line) on StackOverflow).
A better "shebang" would be
as it would keep file compileable with normal
gccinvocation. See example of this here (also discussion on StackOverflow).