diff options
Diffstat (limited to 'files/practicum/WC.icl')
-rw-r--r-- | files/practicum/WC.icl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/files/practicum/WC.icl b/files/practicum/WC.icl new file mode 100644 index 0000000..1bc88be --- /dev/null +++ b/files/practicum/WC.icl @@ -0,0 +1,9 @@ +implementation module WC
+
+import StdEnv, Words, SimpleFileIO
+
+Start :: *World -> (Int,*World)
+Start world = wc "WC.icl" world
+
+wc :: String *env -> (Int,*env) | FileSystem env
+wc ...
|