|
|
|
|
|
by brandonbloom
3156 days ago
|
|
(require '[foo :refer [f]])
; edit f in foo.clj
(require '[foo :reload])
(f 1) ; should call NEW f.
Node doesn’t have a reload construct. If you hack it in by mucking with the module cache, you still won’t get the new f in your module’s local copy of it. |
|
And what should happen in your example if f were deleted?