Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Created July 29, 2009 00:21
Show Gist options
  • Save aalmiray/157773 to your computer and use it in GitHub Desktop.
Save aalmiray/157773 to your computer and use it in GitHub Desktop.
(ns griffon.clojure.Greet
(:gen-class
:methods [[greet [String] String]]))
(defn -greet
([this greetee]
(str "Hello " greetee "!")))
(defn -main
[greetee]
(println (.greet (griffon.clojure.Greet.) greetee)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment