2021-10-30 01:57:19 +00:00
|
|
|
with H3.Compilers;
|
2021-10-30 05:32:16 +00:00
|
|
|
with ada.text_io;
|
2021-10-30 01:57:19 +00:00
|
|
|
|
|
|
|
procedure hello3 is
|
|
|
|
package C is new H3.Compilers(Standard.Wide_Character);
|
|
|
|
|
|
|
|
Compiler: C.Compiler;
|
|
|
|
begin
|
2021-11-12 23:31:25 +00:00
|
|
|
Compiler.Feed ("#include ""abc.txt""");
|
2021-10-30 01:57:19 +00:00
|
|
|
Compiler.End_Feed;
|
|
|
|
end hello3;
|