v / cmd / tools / vvet / tests / array_init_one_val.vv
9 lines · 9 sloc · 121 bytes · 598de74185b76282db113383e7b70506e15aa311
Raw
1fn main() {
2 if 1 in [1] {
3 println('hello world')
4 }
5 bar := 'bar'
6 if 'foo' !in [bar] {
7 println('hello world')
8 }
9}
10