RosettaCodeData/Task/Hello-world-Standard-error/Ada/hello-world-standard-error.adb
2026-04-30 12:34:36 -04:00

6 lines
138 B
Ada

with Ada.Text_IO; use Ada.Text_IO;
procedure Goodbye_World is
begin
Put_Line (Standard_Error, "Goodbye, World!");
end Goodbye_World;