adding experimental changes

This commit is contained in:
2021-10-30 01:57:19 +00:00
parent b7de031e72
commit 442d45fb9e
10 changed files with 496 additions and 74 deletions

10
h2/lib2/hello3.adb Normal file
View File

@ -0,0 +1,10 @@
with H3.Compilers;
procedure hello3 is
package C is new H3.Compilers(Standard.Wide_Character);
Compiler: C.Compiler;
begin
Compiler.Feed ("<<=hello world");
Compiler.End_Feed;
end hello3;