Native shebang

Sidef is a scripting language and does not compile to a binary.

#!/usr/bin/sidef
say ARGV.join(" ")

Output:

$ ./echo.sf Hello, World!
Hello, World!