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
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
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]))