mirror of
https://github.com/vxcontrol/golua.git
synced 2026-08-25 10:11:51 -04:00
16 lines
145 B
Go
16 lines
145 B
Go
package main
|
|
|
|
import "lua"
|
|
import "fmt"
|
|
|
|
func main() {
|
|
|
|
a := lua.GLOBALSINDEX;
|
|
fmt.Println(a);
|
|
|
|
var L *lua.State;
|
|
|
|
lua.PushNumber(L,1.0);
|
|
|
|
}
|