blob: 3cf60b65dbc386fdc8411cb6bafaefaf6d3f680c (
plain)
1
2
3
4
5
6
7
8
9
10
|
with Pck; use Pck;
procedure Foo is
Some_Local_Variable : Integer := 1;
External_Identical_Two : Integer := 74;
begin
My_Global_Variable := Some_Local_Variable + 1; -- START
Proc (External_Identical_Two);
end Foo;
|