Parse command-line arguments: Difference between revisions

Content added Content deleted
m (→‎{{header|Phix}}: added syntax colouring the hard way, phix/basics)
Line 370: Line 370:
</pre>
</pre>


=={{header|Mathematica}}==
=={{header|Mathematica}}/{{header|Wolfram Language}}==
The command line is parsed and stored into a list of strings to ease manual handling by list processing functions.
The command line is parsed and stored into a list of strings to ease manual handling by list processing functions.
<lang Mathematica>
<lang Mathematica>$CommandLine
-> {math, -v, -n, -z, -w, 1, 192.168.1.2, 1-1000}</lang>
$CommandLine
-> {math, -v, -n, -z, -w, 1, 192.168.1.2, 1-1000}
</lang>


=={{header|Nim}}==
=={{header|Nim}}==