でブラウザ上に「HelloWorld」が出るようにしたい。 clojureのprint系関数は内部でclojure.core/prを呼びます。これは以下の様な実装で ;; core.clj (defn pr "Prints the object(s) to the output stream that is the current value of *out*. Prints the object(s), separated by spaces if there is more than one. By default, pr and prn print in a way that objects can be read by the reader" ([] nil) ([x] (pr-on x *out*)) ([x & more] (pr x) (. *out* (append \sp

