# luago **Repository Path**: gaopedro/luago ## Basic Information - **Project Name**: luago - **Description**: 使用 Go 来实现 Lua 虚拟机、标准库等~ - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-04-24 - **Last Updated**: 2021-05-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # luago ## 介绍 使用 Go 来实现 Lua 虚拟机、标准库等~ * [binchunk二进制字节码解析](./binchunk) * [scripts测试lua脚本](./scripts) * [vm虚拟机指令](./vm) * [Lua API](./api) * [Lua State](./state) * [number数字操作](./number) ## 使用 ```shell script luac -l scripts/sum.lua go build ./luago luac.out ``` ## 说明 只支持 lua5.3 版本~ ```go LUAC_VERSION = 0x53 ```