592530326

Results 4 issues of 592530326

L := lua.NewState(lua.Options{SkipOpenLibs: true, CallStackSize: 256, RegistrySize: 256 * 20}) lua.OpenBase(L) lua.OpenString(L) lua.OpenTable(L) lua.OpenMath(L) defer L.Close() ctx, cancel := context.WithTimeout(context.Background(), time.Duration(timeout)*time.Second) defer cancel() L.SetContext(ctx) if err := L.DoString(` function a(c,v)...

How to avoid random src ip?

lifecycle/stale

Hi, I'm using gopher-lua in my project and found that it doesn't support UTF-8 variable names, such as Chinese characters. For example, the following code doesn't work: ```lua local 名字...