Skip to content

Commit 9410486

Browse files
author
volantfish
committed
create lein library project
1 parent 113e46c commit 9410486

File tree

8 files changed

+51
-0
lines changed

8 files changed

+51
-0
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
3+
4+
## [Unreleased][unreleased]
5+
### Changed
6+
- Add a new arity to `make-widget-async` to provide a different widget shape.
7+
8+
## [0.1.1] - 2016-05-11
9+
### Changed
10+
- Documentation on how to make the widgets.
11+
12+
### Removed
13+
- `make-widget-sync` - we're all async, all the time.
14+
15+
### Fixed
16+
- Fixed widget maker to keep working when daylight savings switches over.
17+
18+
## 0.1.0 - 2016-05-11
19+
### Added
20+
- Files from the new template.
21+
- Widget maker public API - `make-widget-sync`.
22+
23+
[unreleased]: https://github.com/your-name/leetcode-clojure/compare/0.1.1...HEAD
24+
[0.1.1]: https://github.com/your-name/leetcode-clojure/compare/0.1.0...0.1.1

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# leetcode-clojure
22
My LeetCode solutions in Clojure.
3+
4+
Try to learn algorithms, functional programming and Lisp grammar.

doc/intro.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Introduction to leetcode-clojure
2+
3+
TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)

project.clj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
(defproject leetcode-clojure "0.1.0-SNAPSHOT"
2+
:description "FIXME: write description"
3+
:url "http://example.com/FIXME"
4+
:license {:name "Eclipse Public License"
5+
:url "http://www.eclipse.org/legal/epl-v10.html"}
6+
:dependencies [[org.clojure/clojure "1.7.0"]])

src/leetcode_clojure/75-sort-colors.clj

Whitespace-only changes.

src/leetcode_clojure/core.clj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
(ns leetcode-clojure.core)
2+
3+
(defn foo
4+
"I don't do a whole lot."
5+
[x]
6+
(println x "Hello, World!"))

src/leetcode_clojure/t1.clj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(if true
2+
"By Zeus's hammer!"
3+
"By Aquaman's trident!")

test/leetcode_clojure/core_test.clj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(ns leetcode-clojure.core-test
2+
(:require [clojure.test :refer :all]
3+
[leetcode-clojure.core :refer :all]))
4+
5+
(deftest a-test
6+
(testing "FIXME, I fail."
7+
(is (= 0 1))))

0 commit comments

Comments
 (0)