Hello.
To tell the compiler that your reply function is indeed the the reply
method implementation, you have to prefix it with "-" , and your
function must accept an argument corresponding to the java instance of
your class (being an instance method).
So, your function definition should look like:
(defn -reply [this] "hello world")
Ronan.