Skip to content

Commit

Permalink
Will I finish on time to submit this to the monthly challenge?
Browse files Browse the repository at this point in the history
  • Loading branch information
pameck committed May 28, 2016
0 parents commit f694039
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ascii-clock

FIXME: description

## Usage
some go script

$ java -jar ascii-clock-0.1.0-standalone.jar [args]

## Options


## Examples

...
7 changes: 7 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(defproject ascii-clock "0.1.0-SNAPSHOT"
:description "You put in your time in militar format, I'll print a clock face using h's, o's, m's and sometimes x's."
:url "http://github.com/pameck/ascii-clock"
:dependencies [[org.clojure/clojure "1.6.0"]]
:main ^:skip-aot core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})
7 changes: 7 additions & 0 deletions src/core.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(ns core
(:gen-class))

(defn -main
"I don't do a whole lot ... yet."
[& args]
(println "Hello, World!"))
7 changes: 7 additions & 0 deletions test/core_test.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(ns ascii-clock.core-test
(:require [clojure.test :refer :all]
[ascii-clock.core :refer :all]))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit f694039

Please sign in to comment.