Skip to content

Instantly share code, notes, and snippets.

@raek
Created April 30, 2011 10:04
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 raek/949577 to your computer and use it in GitHub Desktop.
Save raek/949577 to your computer and use it in GitHub Desktop.
src/foo/Main.java
package foo;
public class Main {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
(defproject foo "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.2.1"]]
:java-source-path "src"
:main ^{:skip-aot true} foo.Main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment