2
3
ミラー元 https://github.com/sammy-ette/Hilbish 前回の同期 2025-08-10 02:52:03 +00:00

fix: int64/int mixup, missing imports

このコミットが含まれているのは:
sammyette 2024-07-21 11:40:13 -04:00
コミット 29ac92dc0b
署名者: sammyette
GPGキーID: 904FC49417B44DCD
3個のファイルの変更5行の追加2行の削除

ファイルの表示

@ -5,6 +5,7 @@ import (
"fmt"
"hilbish/moonlight"
rt "github.com/arnodel/golua/runtime"
)
func handleLua(input string) (string, uint8, error) {

ファイルの表示

@ -24,8 +24,8 @@ func StringValue(str string) Value {
return rt.StringValue(str)
}
func IntValue(i int) Value {
return rt.IntValue(int64(i))
func IntValue(i int64) Value {
return rt.IntValue(i)
}
func BoolValue(b bool) Value {

ファイルの表示

@ -2,6 +2,8 @@
package main
import (
"hilbish/util"
rt "github.com/arnodel/golua/runtime"
"github.com/maxlandon/readline"
)