openresty中lua的数据类型及案例演示
版权声明:原创文章,未经允许不得转载. https://blog.csdn.net/shengqianfeng/article/details/91458482 openresty输出helloworld的两种方式 进入luajit目录,查看luajit版本 信息: 使用luajit执行lua脚本,我们编写一个hello.lua,输出hello world! ./luajit -v 使用resty命令来执行打印hello world,因为resty最终也是调用luajit的。 /usr/local/openresty-1.11.2.5/bin/resty -e 'print("hello world")' openresty打印Lua的数据类型 输出:string /usr/local/openresty-1.11.2.5/bin/resty -e 'print(type(print))' 输出:function /usr/local/openresty-1.11.2.5/bin/resty -e 'print(type(true))' 输出:boolean /usr/local/openresty-1.11.2.5/bin/resty -e 'print(type(0.1))' 输出:number 输出:table 输出:nil 数据类型案例 字符串拼接 /usr/local