simplified rules

This commit is contained in:
Yann Esposito (Yogsototh) 2016-06-13 18:40:39 +02:00
parent ca8e5aee79
commit 964cec7f4c
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
2 changed files with 11 additions and 8 deletions

View file

@ -1,6 +1,6 @@
(defproject jonase/kibit "0.1.2"
(defproject yogsototh/kibit "0.1.3"
:description "There's a function for that!"
:url "https://github.com/jonase/kibit"
:url "https://github.com/yogsototh/kibit"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo

View file

@ -131,12 +131,15 @@
(. Thread (sleep (read-string "2000")))
(. Thread sleep (read-string "2000"))
(-> x f) ;; (f x)
(-> x (f a b)) ;; (f x a b)
(-> x (f)) ;; (f x)
;; -- I like (-> x f)
;;
;; (-> x f) ;; (f x)
;; (-> x (f a b)) ;; (f x a b)
;; (-> x (f)) ;; (f x)
(->> x f) ;; (f x)
(->> x (f a b)) ;; (f a b x)
(->> x (f)) ;; (f x)
;; -- And I like (->> x f)
;; (->> x f) ;; (f x)
;; (->> x (f a b)) ;; (f a b x)
;; (->> x (f)) ;; (f x)
)