Lua语法详解之自带库

--自带库
--string
--table
--时间
print(os.time())--1601168290
print(os.time({
   year=2020,month=9,day=25}))--1601006400
--os.date("*t")传回来的是张表
local now=os.date("*t")
print(now)--table: 0x7fa99f604360
for<

你可能感兴趣的:(Lua相关,lua,游戏开发,unity3d)