Update resp_model.v to make RValue public

This commit is contained in:
Felipe Pena
2025-01-22 18:32:57 -03:00
committed by GitHub
parent 08865d100b
commit e82e367e95

View File

@@ -70,7 +70,7 @@ fn (v RArray) strlist() []string {
return res
}
type RValue = RArray | RBString | RError | RInt | RNil | RString
pub type RValue = RArray | RBString | RError | RInt | RNil | RString
pub fn (v RValue) int() int {
match v {