Added the actual source file, which had been inexplicably omitted.

This commit is contained in:
Simon Brooke 2025-10-31 13:46:56 +00:00
parent b9353eeb24
commit e5875a2a19

View file

@ -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!"))