[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Features to remove: return and noreturn
> It would also tend to violate the current (desired, I presume?)
> feature of the language that function names are not looked up
> lexically but only dynamically:
> ; fn foo {echo outer}
> ; let (fn foo {echo inner}) {foo; $fn-foo}
> outer
> inner
that feature was reclassified as a bug. fixed in 0.88:
; fn foo {echo outer}
; let (fn foo {echo inner}) {foo; $fn-foo}
inner
inner
;
paul