Native shebang: Difference between revisions

Content added Content deleted
(→‎Free Pascal: update URL)
(added Arturo implementation)
Line 68: Line 68:
Hello, world!
Hello, world!
</pre>
</pre>

=={{header|Arturo}}==
Arturo is a scripting language and does not compile to a binary.
<lang rebol>#!/usr/bin/env arturo
print "Hello from Arturo!"</lang>

{{out}}

<pre>$> ./native_shebang.art
Hello from Arturo!</pre>


=={{header|C}}==
=={{header|C}}==