You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/ada/app_templates/adahello/main.adb

9 lines
88 B

with Text_IO;
procedure Main is
begin
Text_IO.Put_Line ("Hello World");
end Main;