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

7 lines
138 B
Ada
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
with Ada.Text_IO; use Ada.Text_IO;
procedure Goodbye_World is
begin
Put_Line (Standard_Error, "Goodbye, World!");
end Goodbye_World;