diff options
Diffstat (limited to 'files/practicum/ZFSort.icl')
-rw-r--r-- | files/practicum/ZFSort.icl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/files/practicum/ZFSort.icl b/files/practicum/ZFSort.icl new file mode 100644 index 0000000..c4cf192 --- /dev/null +++ b/files/practicum/ZFSort.icl @@ -0,0 +1,13 @@ +module ZFSort
+
+import StdEnv
+import Perms
+
+
+is_gesorteerd :: // meest algemene type
+is_gesorteerd ...
+
+sorteer :: // meest algemene type
+sorteer ...
+
+Start = sorteer [10,9..1]
|