RosettaCodeData/Task/Hello-world-Standard-error/Ada/hello-world-standard-error.ada

7 lines
138 B
Ada
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
with Ada.Text_IO; use Ada.Text_IO;
procedure Goodbye_World is
begin
Put_Line (Standard_Error, "Goodbye, World!");
end Goodbye_World;