From e5875a2a199854661ff1717f0e973e8f9b7a718c Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Fri, 31 Oct 2025 13:46:56 +0000 Subject: [PATCH] Added the actual source file, which had been inexplicably omitted. --- src/clj/cc/journeyman/elboob/core.clj | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/clj/cc/journeyman/elboob/core.clj 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!"))