Files
llgo/c/lua/_demo/hello/hello.go
2024-07-13 23:19:47 +08:00

22 lines
295 B
Go

package main
import (
_ "unsafe"
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/lua"
)
func main() {
L := lua.Newstate()
defer L.Close()
L.Openlibs()
if res := L.Dostring(c.Str("print('hello world')")); res != lua.OK {
println("error")
}
}
/* Expected output:
hello world
*/