diff --git a/src/clj/cc/journeyman/elboob/core.clj b/src/clj/cc/journeyman/elboob/core.clj new file mode 100644 index 0000000..8e433ea --- /dev/null +++ b/src/clj/cc/journeyman/elboob/core.clj @@ -0,0 +1,9 @@ +(ns cc.journeyman.elboob.core) + +(defn compile + "scans `dir-paths` as directories of Markdown files. Returns a map which keys + each lexical token occurring in each file (with Markdown formatting, common + words, punctuation etc excepted) to a map which keys the relative file path + of each file in which the token occurs to the frequency the token occurs within the file." + [& dir-paths] + (println "Hello, World!"))