There was an error while loading. Please reload this page.
2 parents b8b8140 + 0cc9442 commit 5f5e727Copy full SHA for 5f5e727
README.md
@@ -870,18 +870,6 @@ pairwise constructs as found in e.g. `let` and `cond`.
870
(filter even? (range 1 10)))
871
```
872
873
-* <a name="dot-dot-macro"></a>
874
- Prefer `..` to `->` when chaining method calls in Java interop.
875
-<sup>[[link](#dot-dot-macro)]</sup>
876
-
877
- ```Clojure
878
- ;; good
879
- (-> (System/getProperties) (.get "os.name"))
880
881
- ;; better
882
- (.. System getProperties (get "os.name"))
883
- ```
884
885
* <a name="else-keyword-in-cond"></a>
886
Use `:else` as the catch-all test expression in `cond`.
887
<sup>[[link](#else-keyword-in-cond)]</sup>
0 commit comments