lua-users home
lua-l archive

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


Gregg Reynolds wrote:
	return {
	  q:foo{ id='x1', ...}
	  q:foo{ id='x2', ...}
	...
	}

It seems you're getting a syntax error since there must be commas in between the method calls:

 	return {
 	  q:foo{ id='x1', ...}, --> comma
 	  q:foo{ id='x2', ...}
	...
 	}

--
Shmuel