first commit

This commit is contained in:
windlejacob12
2022-09-03 08:11:31 -04:00
commit 200fb961b9
11 changed files with 459 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
(ns com-jakewindle-git.scraper
(:require [clj-http.client :as client]))
(defn greet
"Callable entry point to the application."
[data]
(println (str "Hello, " (or (:name data) "World") "!")))
(defn -main
"I don't do a whole lot ... yet."
[& args]
(greet {:name (first args)}))