This commit is contained in:
Alexander Popov 2023-07-15 00:04:19 +03:00
commit 7a955ff0f2
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
6 changed files with 32 additions and 0 deletions

14
.editorconfig Normal file
View File

@ -0,0 +1,14 @@
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{*.v,v.mod}]
indent_style = tab
indent_size = 4
[*.md]
trim_trailing_whitespace = false

4
.gitattributes vendored Normal file
View File

@ -0,0 +1,4 @@
* text=auto eol=lf
**/*.v linguist-language=V
**/v.mod linguist-language=V

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.db

1
README.md Normal file
View File

@ -0,0 +1 @@
Управление личным составом в ВС РФ

5
src/main.v Normal file
View File

@ -0,0 +1,5 @@
module main
fn main() {
println('Hello World!')
}

7
v.mod Normal file
View File

@ -0,0 +1,7 @@
Module {
name: 'imdb'
description: ''
version: ''
license: 'MIT'
dependencies: []
}