Fixed Ada file extension (#777)

This commit is contained in:
Warren A. Kalolo
2020-07-26 05:35:40 +03:00
committed by GitHub
parent 1ec54fc082
commit b3d07b4158
2 changed files with 1 additions and 1 deletions

7
a/ada.adb Normal file
View File

@@ -0,0 +1,7 @@
with Ada.Text_IO;
procedure Hello_World is
use Ada.Text_IO;
begin
Put_line ("Hello World");
end Hello_World;