diff --git a/de/examples/section_1/comment.md b/de/examples/section_1/comment.md index 60ab2ae..7cb2b10 100644 --- a/de/examples/section_1/comment.md +++ b/de/examples/section_1/comment.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Kommentare +--- + # Kommentare V bietet die Möglichkeit Zeilenkommentare mit `//` und mehrzeilige Kommentare mit `/* */` zu erzeugen. diff --git a/de/examples/section_1/hello_world.md b/de/examples/section_1/hello_world.md index 61c9810..3bf6cbd 100644 --- a/de/examples/section_1/hello_world.md +++ b/de/examples/section_1/hello_world.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Formatted Print +--- + # Formatted Print Konsolenausgaben werden durch verschiedene I/O-Streams gehandhabt, dazu sollte man wissen, wo und wie sie zu verwenden sind. diff --git a/de/examples/section_1/keywords.md b/de/examples/section_1/keywords.md index 5d832df..2b4b0c7 100644 --- a/de/examples/section_1/keywords.md +++ b/de/examples/section_1/keywords.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Schlüsselwörter +--- + # Schlüsselwörter V ist eine kleine Programmiersprache mit wenigen Schlüsselwörtern (circa 23 Stück). diff --git a/de/examples/section_1/primitives.md b/de/examples/section_1/primitives.md index 459519e..37c94a0 100644 --- a/de/examples/section_1/primitives.md +++ b/de/examples/section_1/primitives.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Datentypen +--- + # Primitive Datentypen V hat weniger primitive Datentypen als Go. diff --git a/de/examples/section_1/strings.md b/de/examples/section_1/strings.md index 971e0f0..3c9b76c 100644 --- a/de/examples/section_1/strings.md +++ b/de/examples/section_1/strings.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Strings +--- + # Strings In V können Strings mit dem Deklarationsoperator (`:=`) deklariert und initialisiert werden und sind, wie andere Variablen in V auch, standardmäßig `immutable`, d.h. unveränderlich. diff --git a/de/examples/section_1/variables.md b/de/examples/section_1/variables.md index 11279f9..257e941 100644 --- a/de/examples/section_1/variables.md +++ b/de/examples/section_1/variables.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Variables +--- + # Variables Variablen können in V mit dem `:=` Operator deklariert und initialisiert werden. diff --git a/de/examples/section_2/if-else.md b/de/examples/section_2/if-else.md index 1ac70c4..19dcb98 100644 --- a/de/examples/section_2/if-else.md +++ b/de/examples/section_2/if-else.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: If statement +--- + # If statement ## The `if` statement diff --git a/de/examples/section_2/loops.md b/de/examples/section_2/loops.md index d69824b..33bfe65 100644 --- a/de/examples/section_2/loops.md +++ b/de/examples/section_2/loops.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Looping Constructs +--- + # Looping Constructs There's only one type of loop in V language, like Go which can be used in many ways. diff --git a/de/examples/section_2/match.md b/de/examples/section_2/match.md index 9ca3509..769aa1b 100644 --- a/de/examples/section_2/match.md +++ b/de/examples/section_2/match.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Match +--- + # Match ## The `match` statement diff --git a/de/examples/section_2/operator.md b/de/examples/section_2/operator.md index d39aaf2..f2cb1ac 100644 --- a/de/examples/section_2/operator.md +++ b/de/examples/section_2/operator.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Operators +--- + # Operators V bietet die folgenden Operatoren: diff --git a/de/examples/section_3/arrays.md b/de/examples/section_3/arrays.md index 488f821..5ec033a 100644 --- a/de/examples/section_3/arrays.md +++ b/de/examples/section_3/arrays.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Arrays +--- + # Arrays An array is a collection of items stored in contiguous memory locations. It's an aggregate data structure that is designed to store a group of objects of the same type. It's the most efficient data structure for storing and accessing a sequence of objects. diff --git a/de/examples/section_3/functions.md b/de/examples/section_3/functions.md index 6943e43..2f6f980 100644 --- a/de/examples/section_3/functions.md +++ b/de/examples/section_3/functions.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Functions +--- + # Functions A function is a block of organized, reusable code that is used to perform a single, related action. diff --git a/de/examples/section_3/methods.md b/de/examples/section_3/methods.md index 5ed0121..3eb6a00 100644 --- a/de/examples/section_3/methods.md +++ b/de/examples/section_3/methods.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Methods +--- + # Methods V does not have classes. But one can define methods for types. diff --git a/de/examples/section_3/struct.md b/de/examples/section_3/struct.md index 18c2a2c..7256162 100644 --- a/de/examples/section_3/struct.md +++ b/de/examples/section_3/struct.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Struct +--- + # Struct A struct is a composite data type (or record) declaration that defines a physically grouped list of variables under one name in a block of memory, allowing different variables to be accessed via a single pointer or by the struct declared name which returns the same address. diff --git a/de/examples/section_4/array-functions.md b/de/examples/section_4/array-functions.md index 2f4c9ed..99ef721 100644 --- a/de/examples/section_4/array-functions.md +++ b/de/examples/section_4/array-functions.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Array Functions +--- + # Array Functions ## `repeat` diff --git a/de/examples/section_4/files.md b/de/examples/section_4/files.md index bd2ba5b..28e92d3 100644 --- a/de/examples/section_4/files.md +++ b/de/examples/section_4/files.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Files +--- + # Files A File in V is an abstraction of any file object accessible by the program and is closely associated with `os` library. diff --git a/de/examples/section_4/json.md b/de/examples/section_4/json.md index 1c6d11d..f61ecb0 100644 --- a/de/examples/section_4/json.md +++ b/de/examples/section_4/json.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: JSON +--- + # JSON JavaScript Object Notation (JSON) is a lightweight data-interchange format that is easy for humans to read and write. Furthermore, equally simple for machines to generate and/or parse. diff --git a/de/examples/section_4/testing.md b/de/examples/section_4/testing.md index 3b5c85e..3236725 100644 --- a/de/examples/section_4/testing.md +++ b/de/examples/section_4/testing.md @@ -1,3 +1,8 @@ +--- +version: 1.0.0 +example_title: Testing +--- + # Testing Testing in software development is a process that aims to evaluate the functionality of an application with an intent to find whether the code met the specified requirements or not as well as identifying the problems to ensure that the product has expected quality.