Is it possible to inject namespaces in a function in Clojure?
I want my i/o to be outside from the program and only inject it. The problem i faced, that i tried to give a namespace and invoke it i get the error message:
No name namespace: my
(ns mymain
(:require [myio]))
...
(defn my-test [my]
(my/showworld))
;(play_game)
(my-test myio)
ns-resolve.