Towards declared executables

This commit is contained in:
A
2018-02-23 19:30:26 +01:00
parent edc1a14ae2
commit 7800a5e27b
6 changed files with 43 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
with Ada.Containers.Indefinite_Vectors;
package Alire.Utils with Preelaborate is
function To_Mixed_Case (S : String) return String;
package String_Vectors is new Ada.Containers.Indefinite_Vectors (Positive, String);
subtype String_Vector is String_Vectors.Vector;
end Alire.Utils;