bhauman / lein-figwheel

Figwheel builds your ClojureScript code and hot loads it into the browser as you are coding!
Eclipse Public License 1.0
2.88k stars 210 forks source link

no matter how many clients are connected it seems that result prints before last `prn` #651

Closed bhauman closed 6 years ago

bhauman commented 6 years ago

if you have 9 clients connected

dev:cljs.user!{:conn 9}=> (prn 1)
1
1
1
1
1
1
1
1
nil
1
dev:cljs.user!{:conn 9}=>

the return value is always printed before the last print value.

This is the same no matter how many clients are connected.

Need to investigate why.