..连接两个字符串

th> a="hello"
th> b="world"
th> print(a..b)
helloworld    

 

th> a="hello "
th> b="world"
th> print(a..b)
hello world