doing io.popen

This commit is contained in:
2025-10-24 11:56:47 -03:00
parent 26f9e20ae8
commit 52f675ab60
4 changed files with 97 additions and 97 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
lua "github.com/yuin/gopher-lua"
)
func main() {
L := lua.NewState()
if err := L.DoFile("lua.lua"); err != nil {
fmt.Println(err)
}
}