You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, external namespaces are used in push rather than required. This causes side effects.
Actually changing uses to requires would be relatively easy, but old code would also need to be migrated somehow, so I'm not sure if this is actually worth it.
Still, isolating namespaces would be friendlier and more idiomatic.
Thoughts?
The text was updated successfully, but these errors were encountered:
I've been a slow convert to require, and while I still prefer use in many contexts with small projects, I agree that Clojush has grown too big for this. But changing this would indeed require a fair bit of work.
This would be a fairly large undertaking.
Right now, external namespaces are
use
d in push rather thanrequired
. This causes side effects.Actually changing
use
s torequire
s would be relatively easy, but old code would also need to be migrated somehow, so I'm not sure if this is actually worth it.Still, isolating namespaces would be friendlier and more idiomatic.
Thoughts?
The text was updated successfully, but these errors were encountered: