Skip to content

Instantly share code, notes, and snippets.

@patrickgombert
Created January 31, 2012 14:56
Show Gist options
  • Save patrickgombert/1710909 to your computer and use it in GitHub Desktop.
Save patrickgombert/1710909 to your computer and use it in GitHub Desktop.
Clojure to Java interop
(ns test.wrapper
(:gen-class
:name test.Speak
:methods [
[hello [String] String]
]))
(defn -hello [this name]
(str "Hello, " name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment