This commit is contained in:
Alexander Popov 2023-07-01 18:36:49 +03:00
commit 6aa94a883b
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
2 changed files with 26 additions and 0 deletions

19
.editorconfig Normal file
View File

@ -0,0 +1,19 @@
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.v]
indent_style = tab
[*.md]
trim_trailing_whitespace = false
max_line_length = 100
[*.{txt,out}]
insert_final_newline = false

7
hello_world.v Normal file
View File

@ -0,0 +1,7 @@
fn main() {
areas := ['game', 'web', 'tools', 'science', 'systems',
'embedded', 'drivers', 'GUI', 'mobile']
for area in areas {
println('Hello, ${area} developers!')
}
}