aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/vfmt/in.v
blob: 5cb06c539db07a65c8b282272c48350d1aa7c615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fn
main() {
    areas:= ['game',

             'web', 'tools',

             'science',


             'systems',
              'embedded',    'drivers', 'GUI', 'mobile']
    for area in areas
    {





        println('Hello, ${area} developers!')
    }
}