Clojure Namespaces - “require”
Loads a namespace if not already loaded. It takes an argument(symbol) which should be a quoted
After requiring a namespace, we need to refer the functions in a fully qualified names. Like,
Other way is to alias a namespace at the time of requring using as
.
The vector here is to avoid quoting every symbol, clojure.string
and string
.