Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
inout
/
hello_devs.vv
7
lines
·
7
sloc
·
179 bytes
·
6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1
fn main() {
2
areas := ['game', 'web', 'tools', 'science', 'systems', 'embedded']
3
for i := 0; i < areas.len; i++ {
4
area := areas[i]
5
println('Hello, ${area} developers!')
6
}
7
}
8