hiltons.xyz/src/website/main.clj

9 lines
113 B
Clojure
Raw Normal View History

2024-10-14 21:49:59 +00:00
(ns website.main
(:require [website.core :as core])
(:gen-class)
)
(defn -main [&args]
(core/foo 1)
)