mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
13 lines
193 B
Go
13 lines
193 B
Go
fn test_match() {
|
|
a := 3
|
|
mut b := 0
|
|
match a {
|
|
2 => println('two')
|
|
3 => println('three')
|
|
b = 3
|
|
4 => println('four')
|
|
else => println('???')
|
|
}
|
|
assert b == 3
|
|
}
|