lua-users home
lua-l archive

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


>	load(source,,,MY_ENV)
> 	first,,third = something()

The idiom in these cases would be

	load(source,_,_,MY_ENV)
	first,_,third = something()

Perhaps it'd be helpful to have a second predeclared local named "_",
as a cheap throw-away variable...