Clojure REPL in VSCodium
Code
celcius-to-fahrenheit.clj
(defn celcius-to-fahrenheit [celcius]
(+ (* (/ 9 5) celcius) 32))
loadfile.clj
(load-file "celcius-to-fahrenheit.clj")
(celcius-to-fahrenheit 100)
celcius-to-fahrenheit.clj
(defn celcius-to-fahrenheit [celcius]
(+ (* (/ 9 5) celcius) 32))
loadfile.clj
(load-file "celcius-to-fahrenheit.clj")
(celcius-to-fahrenheit 100)