We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a6aa5 commit e8107c2Copy full SHA for e8107c2
3 files changed
.gitignore
@@ -5,4 +5,6 @@ pom.xml
5
/classes/
6
/targets/
7
.lein-deps-sum
8
-*~
+*~
9
+\#*
10
+.#*
rxjava/expt1/project.clj
@@ -5,5 +5,7 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[clj-http "0.7.1"]
+ ;; [org.slf4j/log4j-over-slf4j "1.6.6"]
+ [org.slf4j/slf4j-log4j12 "1.7.5"]
[com.netflix.rxjava/rxjava-clojure "0.7.0"]]
11
:main expt1.core)
rxjava/expt1/src/expt1/core.clj
@@ -20,5 +20,4 @@
20
(Observable/filter (fn [x] (= 0 (mod x 2))))
21
(.subscribe println))
22
23
- ;;(Thread/sleep 200)
24
- (println "Hello, World!"))
+ )
0 commit comments