The case of disappearing double dash

From Getting Started · The Julia Language
The -- delimiter can be used to separate command-line arguments intended for the script file from arguments intended for Julia:

If you add a leading --, then the next one appears

>julia echoargs.jl -- -a -b -- -c
["-a", "-b", "--", "-c"]
4 Likes