Files
alire-index-community/src/alire-properties.adb
T
2018-03-01 19:27:58 +01:00

17 lines
289 B
Ada

with GNAT.IO;
package body Alire.Properties is
-----------
-- Print --
-----------
procedure Print (V : Vector; Prefix : String := "") is
begin
for Prop of V loop
GNAT.IO.Put_Line (Prefix & Prop.Image);
end loop;
end Print;
end Alire.Properties;