<1> 字符串使用双引号,比如"literal strings";单字符使用单引号,比如'a';模式串也是用单引号,比如'[%w_]*'。
<2> 符号-->表示语句的输出或者表达式的结果:
print(10) --> 10
13 + 3 --> 16
<3> 符号<-->表示等价,即对于Lua来说,用this与that没有区别。
this <--> that