JulTob
5/7/2019 - 2:28 PM

structure_of_a_program.adb

with <library>;

procedure <name> is
  use <library>;
  <declarations>
begin
  <body>
exception
  when <exception case> =>
    <exception_reaction>;
end <name>