Command-line arguments: Difference between revisions

m
→‎{{header|Raku}}: update link to documentation
m (→‎{{header|Raku}}: update link to documentation)
Line 2,119:
=={{header|Raku}}==
(formerly Perl 6)
Perl 5's <code>@ARGV</code> is available as <code>@*ARGS</code>. Alternatively, if you define a subroutine named <code>MAIN</code>, Perl will automatically process <code>@*ARGS</code> according to Unix conventions and <code>MAIN</code>'s signature (or signatures, if your <code>MAIN</code> is a multi sub) and then call <code>MAIN</code> with appropriate arguments; seefor [http://perlcabal.org/syn/S06.html#Declaring_a_MAIN_subroutinemore Synopsisdetailed 6]information orsee: [http https://perlgeekdocs.deraku.org/enlanguage/article/5create-to-6#post_14|5-to-6].cli
 
<lang perl6># with arguments supplied
2,392

edits