hcl/lib2/hello3.adb

11 lines
194 B
Ada

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;