lua-users home
lua-l archive

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


> Section "9 – The Complete Syntax of Lua" misses some of
> new syntax changes.
> 	
>   stat ::=  local ‘<’ Name ‘>’ Name ‘=’ exp

I see that line in my copy:

	stat ::=  ‘;’ | 
           [...]
		 function funcname funcbody | 
		 local function Name funcbody | 
		 local namelist [‘=’ explist] | 
		 local ‘<’ Name ‘>’ Name ‘=’ exp 

-- Roberto