Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dsosby committed Apr 3, 2012
0 parents commit e4bf453
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
/target
/lib
/classes
/checkouts
pom.xml
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
13 changes: 13 additions & 0 deletions README.md
@@ -0,0 +1,13 @@
# helloapp

I'm an app.

## Usage

lein exec package

## License

Copyright © 2012 David Sosby

Distributed under the Eclipse Public License, the same as Clojure.
8 changes: 8 additions & 0 deletions project.clj
@@ -0,0 +1,8 @@
(defproject helloapp "0.1.0-SNAPSHOT"
:description "A HelloWorld app written in ClojureScript for BlackBerry"
:url ""
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.3.0"]]
:plugin [[lein-cljsbuild "0.1.5"]
[lein-exec "0.1"]])
6 changes: 6 additions & 0 deletions src/helloapp/core.clj
@@ -0,0 +1,6 @@
(ns helloapp.core)

(defn -main
"I don't do a whole lot."
[& args]
(println "Hello, World!"))
7 changes: 7 additions & 0 deletions test/helloapp/core_test.clj
@@ -0,0 +1,7 @@
(ns helloapp.core-test
(:use clojure.test
helloapp.core))

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

0 comments on commit e4bf453

Please sign in to comment.