1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: document comma in match

This commit is contained in:
Alexander Medvednikov 2020-08-29 11:03:16 +02:00 committed by GitHub
parent 2b545f6b90
commit d88e8bb9ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -891,8 +891,7 @@ enum Color {
fn is_red_or_blue(c Color) bool {
return match c {
.red { true }
.blue { true }
.red, .blue { true } // comma can be used to test multiple values
.green { false }
}
}