gitextract_30_ofps6/ ├── .github/ │ └── workflows/ │ └── mdlint.yml ├── .gitignore ├── .markdownlint.json ├── .typo-ci.yml ├── .vscode/ │ └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── cn/ │ ├── CONTRIBUTING.md │ ├── README.md │ └── examples/ │ ├── README.md │ ├── section_1/ │ │ ├── README.md │ │ ├── comment.md │ │ ├── hello_world.md │ │ ├── keywords.md │ │ ├── primitives.md │ │ ├── strings.md │ │ └── variables.md │ ├── section_2/ │ │ ├── README.md │ │ ├── if-else.md │ │ ├── loops.md │ │ ├── match.md │ │ └── operator.md │ ├── section_3/ │ │ ├── README.md │ │ ├── arrays.md │ │ ├── functions.md │ │ ├── methods.md │ │ └── struct.md │ └── section_4/ │ ├── README.md │ ├── array-functions.md │ ├── files.md │ ├── json.md │ └── testing.md ├── code/ │ ├── hello_world/ │ │ └── hello.v │ ├── match-statement/ │ │ └── match_examples.v │ ├── methods/ │ │ └── methods.v │ └── variables/ │ ├── primitives.v │ └── variables.v ├── de/ │ ├── CONTRIBUTING.md │ ├── README.md │ └── examples/ │ ├── README.md │ ├── section_1/ │ │ ├── README.md │ │ ├── comment.md │ │ ├── hello_world.md │ │ ├── keywords.md │ │ ├── primitives.md │ │ ├── strings.md │ │ └── variables.md │ ├── section_2/ │ │ ├── README.md │ │ ├── if-else.md │ │ ├── loops.md │ │ ├── match.md │ │ └── operator.md │ ├── section_3/ │ │ ├── README.md │ │ ├── arrays.md │ │ ├── functions.md │ │ ├── methods.md │ │ └── struct.md │ └── section_4/ │ ├── README.md │ ├── array-functions.md │ ├── files.md │ ├── json.md │ └── testing.md ├── docs_style_guide.md ├── en/ │ └── examples/ │ ├── section_1/ │ │ ├── README.md │ │ ├── comment.md │ │ ├── hello_world.md │ │ ├── keywords.md │ │ ├── primitives.md │ │ ├── strings.md │ │ └── variables.md │ ├── section_2/ │ │ ├── README.md │ │ ├── if-else.md │ │ ├── loops.md │ │ ├── match.md │ │ └── operator.md │ ├── section_3/ │ │ ├── README.md │ │ ├── arrays.md │ │ ├── functions.md │ │ ├── methods.md │ │ └── struct.md │ └── section_4/ │ ├── README.md │ ├── array-functions.md │ ├── files.md │ ├── json.md │ └── testing.md ├── fr/ │ ├── section_1/ │ │ ├── Beinvenue_monde.md │ │ ├── README.md │ │ ├── les_chaînes de caractères.md │ │ ├── les_commentaires.md │ │ ├── les_mots_clés.md │ │ ├── les_primitives.md │ │ └── les_variables.md │ ├── section_2/ │ │ ├── README.md │ │ ├── if-else.md │ │ ├── loops.md │ │ ├── match.md │ │ └── operator.md │ ├── section_3/ │ │ ├── README.md │ │ ├── arrays.md │ │ ├── functions.md │ │ ├── methods.md │ │ └── struct.md │ └── section_4/ │ ├── README.md │ ├── array-functions.md │ ├── files.md │ ├── json.md │ └── testing.md ├── id/ │ ├── CONTRIBUTING.md │ ├── README.md │ └── examples/ │ ├── README.md │ └── section1/ │ ├── README.md │ └── variables.md ├── it/ │ ├── CONTRIBUTING.md │ ├── README.md │ └── examples/ │ ├── README.md │ └── section_1/ │ ├── README.md │ ├── comment.md │ ├── hello_world.md │ ├── keywords.md │ ├── primitives.md │ ├── strings.md │ └── variables.md ├── jp/ │ ├── CONTRIBUTING.md │ ├── README.md │ ├── code/ │ │ └── hello_world/ │ │ └── hello.v │ └── examples/ │ ├── section_1/ │ │ ├── README.md │ │ ├── comment.md │ │ ├── hello_world.md │ │ ├── keywords.md │ │ ├── primitives.md │ │ ├── strings.md │ │ └── variables.md │ ├── section_2/ │ │ ├── README.md │ │ ├── if-else.md │ │ ├── loops.md │ │ ├── match.md │ │ └── operator.md │ ├── section_3/ │ │ ├── README.md │ │ ├── arrays.md │ │ ├── functions.md │ │ ├── methods.md │ │ └── struct.md │ └── section_4/ │ ├── README.md │ ├── array-functions.md │ ├── files.md │ ├── json.md │ └── testing.md └── pt-br/ ├── CONTRIBUTING.md ├── README.md └── examples/ ├── README.md ├── section_1/ │ ├── README.md │ ├── comment.md │ ├── keywords.md │ └── primitives.md └── section_2/ ├── README.md └── operators.md