mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
9 lines
121 B
V
9 lines
121 B
V
fn main() {
|
|
if 1 in [1] {
|
|
println('hello world')
|
|
}
|
|
bar := 'bar'
|
|
if 'foo' !in [bar] {
|
|
println('hello world')
|
|
}
|
|
}
|