Native shebang: Difference between revisions

Content added Content deleted
Line 618: Line 618:


=={{header|Julia}}==
=={{header|Julia}}==
usage: ./thisfile.jl "hello"
<lang julia>#!/usr/local/bin/julia
<lang julia>#!/usr/local/bin/julia


# Put the Julia code below this line. It will be compiled and run.
# Put the Julia code below this line. It will be compiled and run.


Base.banner()
Base.banner()
println(ARGS)


</lang>{{out}}
</lang>{{out}}
Line 633: Line 635:
| | |_| | | | (_| | | Version 1.1.1 (2019-05-16)
| | |_| | | | (_| | | Version 1.1.1 (2019-05-16)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
|__/
hello |
</pre>
</pre>