parser/trunk_go/value/value.go
2022-09-03 16:35:17 +01:00

16 lines
180 B
Go

package value
type Value interface {
ToString() string
ToInt() int
IsString() bool
IsInt() bool
Dump() string
}
func Init() {
// No-op to avoid unused import errors...
}