Skip to content

Instantly share code, notes, and snippets.

@willhyper
Last active August 25, 2020 01:24
Show Gist options
  • Save willhyper/19b1ca49e51394f6d413be95a31ee1fe to your computer and use it in GitHub Desktop.
Save willhyper/19b1ca49e51394f6d413be95a31ee1fe to your computer and use it in GitHub Desktop.

Revisions

  1. willhyper renamed this gist Aug 25, 2020. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. willhyper revised this gist Aug 25, 2020. 2 changed files with 4 additions and 2 deletions.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    (ns app.core)

    (defn foo
    (defn -main
    "I don't do a whole lot."
    [x]
    (println x "Hello, World!"))
    4 changes: 3 additions & 1 deletion project.clj
    Original file line number Diff line number Diff line change
    @@ -4,4 +4,6 @@
    :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
    :url "https://www.eclipse.org/legal/epl-2.0/"}
    :dependencies [[org.clojure/clojure "1.10.1"]]
    :repl-options {:init-ns app.core})
    :repl-options {:init-ns app.core}
    :main app.core
    :aot :all)
  3. willhyper created this gist Aug 25, 2020.
    6 changes: 6 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    (ns app.core)

    (defn foo
    "I don't do a whole lot."
    [x]
    (println x "Hello, World!"))
    7 changes: 7 additions & 0 deletions project.clj
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    (defproject app "0.1.0-SNAPSHOT"
    :description "FIXME: write description"
    :url "http://example.com/FIXME"
    :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
    :url "https://www.eclipse.org/legal/epl-2.0/"}
    :dependencies [[org.clojure/clojure "1.10.1"]]
    :repl-options {:init-ns app.core})