@viebel iām not sure how - i have an http://app.klipse.tech/ window open with some code in it, how do i link to it?
press Ctrl-S
A pop up will appear with a url that contains ?cljs_in=ā¦
with your code
aha, thx
You can also press Ctrl-R
to refresh the page - keeping the same content
nice
http://app.klipse.tech/?cljs_in=(for%20%5Bi%20(range%205)%5D%0A%20%20true)%0A%0A(let%20%5Barr%20(make-array)%5D%0A%20%20(loop%20%5Bi%200%5D%0A%20%20%20%20(when%20(%3C%20i%205)%0A%20%20%20%20%20%20(aset%20arr%20i%20true)%0A%20%20%20%20%20%20(recur%20(inc%20i))))%0A%20%20arr)%0A%0A(let%20%5Barr%20(make-array)%5D%0A%20%20(doseq%20%5Bi%20(range%205)%5D%0A%20%20%20%20%20%20(aset%20arr%20i%20true))%0A%20%20arr) was what i was poking around with, very basic stuff
i was just interested to find that loop/recur emits much less js than i would have expected, esepcially compared to the other two
all the urls and hotkeys are here: https://github.com/viebel/klipse/blob/master/repl.md
nice
š