mirror of https://github.com/ledisdb/ledisdb.git
9 lines
104 B
Go
9 lines
104 B
Go
|
package main
|
||
|
|
||
|
import "github.com/siddontang/golua/lua"
|
||
|
|
||
|
func main() {
|
||
|
L := lua.NewState()
|
||
|
L.Close()
|
||
|
}
|