https://github.com/corpix/lua
Helpers around https://github.com/yuin/gopher-lua
https://github.com/corpix/lua
go-packages golang gopher-lua lua
Last synced: 7 days ago
JSON representation
Helpers around https://github.com/yuin/gopher-lua
- Host: GitHub
- URL: https://github.com/corpix/lua
- Owner: corpix
- License: mit
- Created: 2017-11-30T23:08:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-05-25T09:40:55.000Z (9 months ago)
- Last Synced: 2025-08-14T18:40:12.341Z (6 months ago)
- Topics: go-packages, golang, gopher-lua, lua
- Language: Go
- Size: 26.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lua
---------
[](https://travis-ci.org/corpix/lua)
Helpers around https://github.com/yuin/gopher-lua
## Examples
Here is a simple example which shows how to transform data from Lua:
``` console
$ go run ./examples/transform/transform.go
(map[string]interface {}) (len=1) {
(string) (len=7) "how you": (string) (len=5) "doin?"
}
(map[interface {}]interface {}) (len=2) {
(string) (len=7) "how you": (string) (len=5) "doin?",
(string) (len=5) "hello": (string) (len=5) "world"
}
```