In Hy manual it says to use require for readers, but it doesn't work for me, what i am doing wrong? The macro and the function works fine
;;f2.hy
(defmacro x []
"")
(defreader y []
"")
(defn z []
"")
;;f1.hy
(require f2 [x y])
(import f2 [z])
(x)
(z)
#y
I get :
hy.errors.HyRequireError: Could not require name y from <module 'f2'