eb 10, 2010 at 1:28 PM, Hozumi wrote:
> > Hi all.
> > Is it not recommended to use defn within defn?
>
> > Normal function is faster than the function which has inner function
> > which actually doesn't run.
> > ---
0, 2010 at 1:28 PM, Hozumi wrote:
> Hi all.
> Is it not recommended to use defn within defn?
>
> Normal function is faster than the function which has inner function
> which actually doesn't run.
> --
Hozumi, nested defn's are definitely not recommended. I suggest using
letfn for the inner function.
Bill Smith
Austin, TX
On Feb 10, 3:28 pm, Hozumi wrote:
> Hi all.
> Is it not recommended to use defn within defn?
>
> Normal function is faster than the function which h
Hi all.
Is it not recommended to use defn within defn?
Normal function is faster than the function which has inner function
which actually doesn't run.
--
(defn aaa1 []
(defn bbb [] 1)
1)
(defn aaa2 [] 1)