Command-line arguments: Difference between revisions

Content added Content deleted
(Add Racket solution)
Line 10: Line 10:


=={{header|Ada}}==
=={{header|Ada}}==
Command line arguments are available through the predefined package Ada.Command_Line.
In Ada95 and later versions, command line arguments are available through the predefined package Ada.Command_Line. In Ada83, this would be implementation dependent.


<lang ada>with Ada.Command_line; use Ada.Command_Line;
<lang ada>with Ada.Command_line; use Ada.Command_Line;