RosettaCodeData/Task/Collections/Ada/collections-5.adb
2026-04-30 12:34:36 -04:00

17 lines
256 B
Ada

with Ada.Containers.Vectors;
use Ada.Containers;
procedure Vector_Example is
package Vector_Pkg is new Vectors (Natural, Integer);
use Vector_Pkg;
V : Vector;
begin
V.Append (1);
V.Append (2);
V.Append (3);
end Vector_Example;