Advertisement
Guest User

Untitled

a guest
Jul 7th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.18 KB | None | 0 0
  1. -- in .ads file
  2. procedure Foo with Global => null;
  3. Array_T is array(1..5) of Integer;
  4. -- in .adb file
  5. procedure Foo is
  6.    Arr : Array_T := (others => 0);
  7. begin
  8.    null;
  9. end Foo;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement