6 lines
82 B
Ada
6 lines
82 B
Ada
|
|
declare
|
||
|
|
X : Integer; -- Allocated on the stack
|
||
|
|
begin
|
||
|
|
...
|
||
|
|
end; -- X is freed
|