Command-line argument parsing: Difference between revisions

Content deleted Content added
C: getopt
Rexx
Line 129:
$ racket /tmp/c -nfe 8
8-(
</syntaxhighlight>
 
===Rexx===
[[Rexx]] uses <code>arg</code>, e.g.:
<syntaxhighlight lang="rexx">
do i=1 to words(arg(1))
say word(arg(1), i)
end
</syntaxhighlight>