Re: Latest JOGL with Clojure in Eclipse?

2012-12-05 Thread Frank Wilson
Hi Andrew, I have been working on a maven build that installs jogl 2.0 jars into .m2 repo. Its not complete yet as it only installs dependencies for win32/amd64. But adding other platforms should be easy. You will need to install the 7z plugin and the 7z binding project on my github to make it wor

Re: Latest JOGL with Clojure in Eclipse?

2012-12-05 Thread Frank Wilson
Hi Andrew, I have been working on a maven build that installs jogl 2.0 jars into .m2 repo. Its not complete yet as it only installs dependencies for win32/amd64. But adding other platforms should be easy. You will need to install the 7z plugin and the 7z binding project on my github to make it wor

checking if a method is defined

2012-02-29 Thread Frank Wilson
Hi, The behaviour of resolve for named functions seems pretty clear to me: (resolve 'xyz) returns nil (when xyz has not been defined). and (defn xyz [x] 1) (resolve 'xyz) returns #'user/xyz (when xyz is defined) However if I try to define types: (defprotocol Named (fullName [Named]))