Skip to content

Commit

Permalink
Added Clojure starting point
Browse files Browse the repository at this point in the history
  • Loading branch information
mowat27 committed Nov 11, 2011
1 parent b69a013 commit f14c36d
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions starting_points/clojure/lein/conways/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pom.xml
*jar
/lib/
/classes/
.lein-failures
.lein-deps-sum
13 changes: 13 additions & 0 deletions starting_points/clojure/lein/conways/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# conways

FIXME: write description

## Usage

FIXME: write

## License

Copyright (C) 2011 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
3 changes: 3 additions & 0 deletions starting_points/clojure/lein/conways/project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
(defproject conways "1.0.0-SNAPSHOT"
:description "Conways Game of Life"
:dependencies [[org.clojure/clojure "1.2.1"]])
1 change: 1 addition & 0 deletions starting_points/clojure/lein/conways/src/conways/core.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(ns conways.core)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(ns conways.test.core
(:use [conways.core])
(:use [clojure.test]))

(deftest conways-test
(is false "Breath life into me!"))

0 comments on commit f14c36d

Please sign in to comment.