mirror of https://github.com/Hilbis/Hilbish
12 lines
129 B
Go
12 lines
129 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/yuin/gopher-lua"
|
||
|
)
|
||
|
|
||
|
func hshprompt(L *lua.LState) int {
|
||
|
prompt = L.ToString(1)
|
||
|
|
||
|
return 0
|
||
|
}
|