sandbox/ada/bap/chapter01/hello/hello_world.adb

10 lines
166 B
Ada
Raw Normal View History

2022-10-22 02:18:42 +00:00
with Ada.Text_IO;
procedure hello_world is
begin
Ada.Text_IO.Put_Line("Hello, world.");
Ada.Text_IO.Put("Now, goodbye.");
Ada.Text_IO.New_Line;
end hello_world;