mirror of
https://github.com/Hilbis/Hilbish
synced 2025-06-30 16:22:03 +00:00
13 lines
130 B
Go
13 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"github.com/yuin/gopher-lua"
|
|
)
|
|
|
|
func hshprompt(L *lua.LState) int {
|
|
prompt = L.ToString(1)
|
|
|
|
return 0
|
|
}
|
|
|