lua学习笔记——变量的声明

--单行注释

--[[

多行注释

]]

--变量声明的时候 不需要声明类型

str = "Hello World"

--多个变量

name,age ="LanOu",4,5,10

print(str)

print(name,age,ad)