..连接两个字符串
th> a="hello" th> b="world" th> print(a..b) helloworld
th> a="hello " th> b="world" th> print(a..b) hello world
..在lua中运用
原文:http://www.cnblogs.com/ymjyqsx/p/6146204.html