summaryrefslogtreecommitdiff
path: root/comb.ads
diff options
context:
space:
mode:
Diffstat (limited to 'comb.ads')
-rw-r--r--comb.ads16
1 files changed, 0 insertions, 16 deletions
diff --git a/comb.ads b/comb.ads
deleted file mode 100644
index a8200e7..0000000
--- a/comb.ads
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-generic
-
- type Index_T is (<>);
- type Element_T is private;
- type Array_T is array (Index_T range <>) of Element_T;
-
- with function ">"(X, Y : in Element_T) return Boolean is <>;
-
-package Comb is
-
- procedure Sort(Arr : in out Array_T);
-
-end Comb;
-