brave-clojure-web
brave-clojure-web copied to clipboard
**Better Symmetrizer with reduce** section (https://www.braveclojure.com/do-things/)
**Maps** section (https://www.braveclojure.com/do-things/)
**Calling Functions** section (https://www.braveclojure.com/do-things/)
**Destructuring** section (https://www.braveclojure.com/do-things/)
Better check it yourself. I was unable to get the damn thing to work. I always thought python was pain, but ruby is on another level. And.... Thank you for...
When loop is explained, there is the following code: > (defn recursive-printer > ([] > (recursive-printer 0)) > ([iteration] > (println iteration) > (if (> iteration 3) > (println "Goodbye!")...
Bumps [ffi](https://github.com/ffi/ffi) from 1.9.8 to 1.11.1. Changelog *Sourced from [ffi's changelog](https://github.com/ffi/ffi/blob/master/CHANGELOG.md).* > 1.11.1 / 2019-05-20 > ------------------- > > Changed: > * Raise required ruby version to >=2.0. [#699](https://github-redirect.dependabot.com/ffi/ffi/issues/699), [#700](https://github-redirect.dependabot.com/ffi/ffi/issues/700)...
Bumps [haml](https://github.com/haml/haml) from 4.0.6 to 5.0.0. Changelog *Sourced from [haml's changelog](https://github.com/haml/haml/blob/master/CHANGELOG.md).* > ## 5.0.0 > > Released on April 26, 2017 > ([diff](https://github.com/haml/haml/compare/4.0.7...v5.0.0)). > > Breaking Changes > > *...
In the method definition for `vampire?` (page 85 in the pdf), "Record" is used instead of "record" during the call to `has-pulse?` 
The output of calling `macroexpand` for the `if-valid` macro is shown at the end of Chapter 8. However, the output is presented as code to be input by the user...