You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
229 B

with Ada.Text_IO;
with Ada.Command_Line;
procedure Hello is
package IO renames Ada.Text_IO;
Name : String := Ada.Command_Line.Argument (1);
begin
pragma Foo;
IO.Put_Line("Hello, world!");
IO.New_Line;
end Hello;