I define namespace inside a clojure lib without ',
(ns myproject.hello)
But, I use ' for using it.
(use 'myproject.hello)
Why is this? Is there any logic behind this? In gosh (dialect of scheme), I use without ' i.e. (use myproject) Why is this irregularity?