lua-users home
lua-l archive

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


>Would it be possible to enable the syntax:
>
>	local function myFunc(params)

You can do this in twp steps:
	local myFunc
	function myFunc(params)
--lhf