June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -1,6 +1,6 @@
|
|||
with Ada.Text_IO;
|
||||
|
||||
procedure Goodbye_World is
|
||||
procedure Goodbye_World is
|
||||
begin
|
||||
Ada.Text_IO.Put("Goodbye, World!");
|
||||
end Goodbye_World;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
with Ada.Text_IO;
|
||||
with Ada.Text_IO.Text_Streams;
|
||||
|
||||
procedure Goodbye_World is
|
||||
stdout: Ada.Text_IO.File_Type := Ada.Text_IO.Standard_Output;
|
||||
begin
|
||||
String'Write(Ada.Text_IO.Text_Streams.Stream(stdout), "Goodbye World");
|
||||
end Goodbye_World;
|
||||
Loading…
Add table
Add a link
Reference in a new issue