package
module
Version:
v0.0.0-...-b8e6d77
Opens a new window with list of versions in this module.
Published: Sep 6, 2022
License: MIT
Opens a new window with license information.
Imports: 10
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
go-lua
基于GopherLua封装的一个Lua脚本引擎。
GopherLua是一个日本人使用纯Golang开发的Lua虚拟机,Lua的基本特性都实现得差不多了,也是够用了。
基本交互
变量
变量有三种访问方式:
- 单向只写 - 将宿主的变量注入;
- 单向只读 - 读取脚本中的变量;
- 双向可读可写 - 将宿主的变量注入,脚本可操作宿主的变量并且反馈到宿主。
方法
模块
变量和方法都可以注册到全局,也可以注册到模块。模块是一个好的解决方案,以免全局栈上名字冲突。
Documentation
¶
func NewVirtualMachine() *virtualMachine
type TableMap map[string]interface{}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.