Re: Proper Tail Calls Lua 5.2
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Proper Tail Calls Lua 5.2
- From: Jay Carlson <nop@...>
- Date: 2016年2月13日 12:38:14 -0500
> On 2016年02月12日, at 8:38 PM, Derek Bailey <dbaileychess@gmail.com> wrote:
>
> In PiL ed 3, Section 6.3 on Proper Tail Calls it says the only calls that follow the following form are proper tail calls:
>
> return func(args)
>
Note that if calling "func(x)" returns multiple values, "return func(x)" will return multiple values.
Jay