Merge pull request #30 from felipensp/patch-1

Update resp_model.v to make RValue public
This commit is contained in:
2025-01-27 12:39:52 +03:00
committed by GitHub

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 {