[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Did Lua ever have built-ins recognized by the VM?
- From: Dibyendu Majumdar <mobile@...>
- Date: Sun, 31 Mar 2019 13:27:05 +0100
On Sun, 31 Mar 2019 at 13:21, Soni "They/Them" L. <fakedme@gmail.com> wrote:
> On 2019-03-31 8:37 a.m., Dibyendu Majumdar wrote:
> > I was wondering if Lua ever had built-in functions that were
> > recognized by the VM. This seems hard to do given that functions are
> > values in Lua, and can be saved in local variables.
> >
>
> Does _ENV count?
>
The VM doesn't recognize _ENV as such it is handled by the parser.
Also it is not a function.