Hilbish/testplugin/testplugin.go

10 lines
146 B
Go
Raw Normal View History

2023-11-12 00:39:31 +00:00
package main
import (
rt "github.com/arnodel/golua/runtime"
)
func Loader(rtm *rt.Runtime) rt.Value {
return rt.StringValue("hello world!")
}