(ns learning.hello
  (:gen-class))The :gen-class directive in the ns declaration tells Clojure to generate a named Java class when it compiles the namespace.
You can compile in the repl !!
user=> (load "learning/hello")
nil
user=> (compile 'learning.hello)
learning.helloWhen you change a file and then want to test in a running REPL
(use 'xxx.xxx :reload-all)Get the type of the last result
(type *1)