diff options
Diffstat (limited to 'files/practicum/Cijferreeks.icl')
-rw-r--r-- | files/practicum/Cijferreeks.icl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/files/practicum/Cijferreeks.icl b/files/practicum/Cijferreeks.icl new file mode 100644 index 0000000..1232ea2 --- /dev/null +++ b/files/practicum/Cijferreeks.icl @@ -0,0 +1,8 @@ +module Cijferreeks
+
+import StdEnv
+
+Start = charsInt ['3210'] == 3210 // het resultaat moet True zijn
+
+charsInt :: ([Char] -> Int)
+charsInt ...
|