【LuatOS】②开发环境搭建+hello world工程
2023-02-17 17:46 作者:axushilong | 我要投稿

02:59
新建一个工程叫hello world

PROJECT = "hello world"
VERSION "0.0.1"
sys = require"sys"
print("hello world!!")
sys.run()
04:32

PROJECT = "hello world"
VERSION "0.0.1"
sys = require"sys"
sys.timerLoopStart(print,1000,"hello world!!")
sys.run()