表+数组
tab = {x=100;y=200;"Sunday";"Monday"}
tab.x //100
tab[1] //"Sunday"
//table中不符合变量命名规则的键必须通过[]操作符访问
tab = { [1]=300;[2]=400;["+"]=200;[1+1]=200 }; //OK
tab = { 1=300; 2=400; "+"=200; 1+1=200 }; //Error
tab2 = {"1"=1;"2"=2;1;2;3}
#tab2 //3
table.len(tab2) //3,table内数组长度
table.count(tab2) //5,table总大小
//http://bbs.aardio.com/forum.php?mod=viewthread&tid=269&highlight=table
bytes = { string.unpack(str) } //多个返回值转数组