lua-users home
lua-l archive

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


Hi everyone,

I want to read following table from C with random access:

test = {
	{ 1, 2, 3, 4},
	{ 5, 6, 7, 8},
	{ 2, 4, 5, 9}
}

I just want to retrieve 7 which is on 3rd place of
2nd row. How can I do this?


Regards,
Choi, Woo Seong