Hi,
When defining inline functions is good to add names then so when some error happens we can see the function name on the stack trace, as on the following example:
(let [f (fn my-fn-name [] "body")]
(f))
On the example above, the my-fn-name is just a way to name the function, but currently Cursive complains that's an unused local symbol (which in fact it is, but it doesn't matter on this case).
Hi,
When defining inline functions is good to add names then so when some error happens we can see the function name on the stack trace, as on the following example:
On the example above, the
my-fn-nameis just a way to name the function, but currently Cursive complains that's anunused local symbol(which in fact it is, but it doesn't matter on this case).