;; Let's create a namespace and the remove it
user=> (create-ns 'my-new-namespace)
#<Namespace my-new-namespace>
;; removing a namespace will give you the namespace you just deleted, if one existed
user=> (remove-ns 'my-new-namespace)
#<Namespace my-new-namespace>
;; removing a namespace that does not exist, will tell you that nothing was removed,
;; by returning nill, and won't give any errors
user=> (remove-ns 'my-new-namespace)
nil
;; Let's create a namespace and the remove it
user=> (create-ns 'my-new-namespace)
#<Namespace my-new-namespace>
;; removing a namespace will give you the namespace you just deleted, if one existed
user=> (remove-ns 'my-new-namespace)
#<Namespace my-new-namespace>
;; removing a namespace that does not exist, will tell you that nothing was removed,
;; by returning nill, and won't give any errors
user=> (remove-ns 'my-new-namespace)
nil