working compiler instructions
This commit is contained in:
parent
6f94e52d07
commit
9836a9e372
6 changed files with 22 additions and 13 deletions
6
test/program.adb
Normal file
6
test/program.adb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
package body Program is
|
||||
procedure Main is
|
||||
begin
|
||||
null;
|
||||
end Main;
|
||||
end Program;
|
||||
4
test/program.ads
Normal file
4
test/program.ads
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
package Program is
|
||||
procedure Main;
|
||||
pragma Export (C, Main, "main");
|
||||
end Program;
|
||||
Loading…
Add table
Add a link
Reference in a new issue