vlang / rfcs

RFCs for changes to V

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[match] support more than 1 value in a match

igotfr opened this issue · comments

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