From 6aa94a883b403d3227018a4fd2b16476b0c7a287 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sat, 1 Jul 2023 18:36:49 +0300 Subject: [PATCH] init --- .editorconfig | 19 +++++++++++++++++++ hello_world.v | 7 +++++++ 2 files changed, 26 insertions(+) create mode 100644 .editorconfig create mode 100644 hello_world.v diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1ae6b0b --- /dev/null +++ b/.editorconfig @@ -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 diff --git a/hello_world.v b/hello_world.v new file mode 100644 index 0000000..1a23d5d --- /dev/null +++ b/hello_world.v @@ -0,0 +1,7 @@ +fn main() { + areas := ['game', 'web', 'tools', 'science', 'systems', + 'embedded', 'drivers', 'GUI', 'mobile'] + for area in areas { + println('Hello, ${area} developers!') + } +}