working compiler instructions

This commit is contained in:
Ada Orbit 2026-04-05 22:21:03 +02:00
parent 6f94e52d07
commit 9836a9e372
6 changed files with 22 additions and 13 deletions

6
test/program.adb Normal file
View file

@ -0,0 +1,6 @@
package body Program is
procedure Main is
begin
null;
end Main;
end Program;

4
test/program.ads Normal file
View file

@ -0,0 +1,4 @@
package Program is
procedure Main;
pragma Export (C, Main, "main");
end Program;