lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 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