1 Star 1 Fork 0

pedro/luago

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 250 Bytes
一键复制 编辑 原始数据 按行查看 历史
pedro 提交于 2021-05-06 15:25 . add func code but not test
package main
import (
"io/ioutil"
"luago/state"
"os"
)
func main() {
if len(os.Args) > 1 {
data, err := ioutil.ReadFile(os.Args[1])
if err != nil {
panic(err)
}
ls := state.New()
ls.Load(data, os.Args[1], "b")
ls.Call(0, 0)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaopedro/luago.git
git@gitee.com:gaopedro/luago.git
gaopedro
luago
luago
master

搜索帮助