mirror of https://github.com/Hilbis/Hilbish
10 lines
146 B
Go
10 lines
146 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
rt "github.com/arnodel/golua/runtime"
|
||
|
)
|
||
|
|
||
|
func Loader(rtm *rt.Runtime) rt.Value {
|
||
|
return rt.StringValue("hello world!")
|
||
|
}
|