(I know I know, there are plenty of other ways to access a Clojure REPL!)
Show HN: Clojure by Example
11–20 of 37 posts
Re: Show HN: Clojure by Example
#12Re: Show HN: Clojure by Example
#13Re: Show HN: Clojure by Example
#14Would be awesome if interactive like the interactive SICP[0] [0] http://xuanji.appspot.com/isicp
If someone ever comes up for something like this for Clojure then it would be incredibly awesome.
Re: Show HN: Clojure by Example
#15Re: Show HN: Clojure by Example
#16Re: Show HN: Clojure by Example
#17Re: Show HN: Clojure by Example
#18The target audience is people with prior programming experience. It's important to know the target audience, either as a writer or reviewer.
The tutorial webpage is simple and effective with a gradual progression in concept difficulty.
I hope we have more things like this! Thanks!
Re: Show HN: Clojure by Example
#19Would be awesome if interactive like the interactive SICP[0] [0] http://xuanji.appspot.com/isicp
Re: Show HN: Clojure by Example
#20This is a great project! I believe there's a lack of clarity in the let form explanation: =>(let [object "light"] => (let [object "darkness"]) => (println (str "God said let there be " object))) God said let there be light nil 'object' is overwritten but only within the second let form: =>(let [object "light"] => (let [object "darkness"] => (println (str "God said let there be " object)))) God said let there be darkn…
=>(let [object "light"]
=> (let [object "darkness"]
=> (println (str "God said let there be " object)))
=> (println (str "God said let there be " object)))
God said let there be darkness
God said let there be light
nil