Skip to content

Instantly share code, notes, and snippets.

@briprowe
Created October 21, 2011 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briprowe/1304564 to your computer and use it in GitHub Desktop.
Save briprowe/1304564 to your computer and use it in GitHub Desktop.
(definterface IRDScreenUpdate
(^long getX [])
(^long getY [])
(^bytes getBytes [])
(^String getType []))
(reify IRDScreenUpdate
(getX [_] x-pos)
(getY [_] y-pos)
(getBytes [_] data)
(getType [_] img-type))
Exception in thread "main" java.lang.NoClassDefFoundError: java/lang/bytes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment