Skip to content

Instantly share code, notes, and snippets.

@mulander
Created October 13, 2011 18:38
Show Gist options
  • Save mulander/1285071 to your computer and use it in GitHub Desktop.
Save mulander/1285071 to your computer and use it in GitHub Desktop.
with Ada.Text_IO;
procedure Outer_Pack
is
package Inner_Pack
is
procedure Inner_Test;
end Inner_Pack;
package body Inner_Pack
is
procedure Inner_Test
is
begin
Ada.Text_IO.Put_Line("Inner test");
end Inner_Test;
end Inner_Pack;
begin
Ada.Text_IO.Put_Line("Hello World!");
Inner_Pack.Inner_Test;
end Outer_Pack;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment