vlang/rfcs

[match] support more than 1 value in a match

igotfr opened this issue · 1 comments

match x, y {
   (2, 3, 7..12, >= 19) && (4, 6, 11.=15, < 0) {}
   (2, 3, 7..12, >= 19) || (4, 6, 11.=15, < 0) {}
}

related:
vlang/v#12738