Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # do Some expressions have implicit do blocks in them, making it unnecessary to use a do block ### when <code clojure> ;;; Don't (when test (do expr1 expr2)) ;;; Do (when test expr1 expr2) </code> ### let <code clojure> ;;; Don't (let bindings (do expr1 expr2)) ;;; Do (let bindings expr1 expr2) </code> ### Function body <code clojure> ;;; Don't (fn [] (do expr1 expr2)) ;;; Do (fn [] expr1 expr2) </code> open/do.txt Last modified: 2024/10/05 06:15by 127.0.0.1