Skip to content

Commit 33f2907

Browse files
Ivo-Balbaertgitbook-bot
authored andcommitted
GitBook: [master] 19 pages modified
1 parent 49cf13c commit 33f2907

File tree

19 files changed

+203
-100
lines changed

19 files changed

+203
-100
lines changed

SUMMARY.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Table of contents
2+
3+
* [V by Example](README.md)
4+
* [en](en/README.md)
5+
* [examples](en/examples/README.md)
6+
* [section\_3](en/examples/section_3/README.md)
7+
* [Functions](de/examples/section_3/functions.md)
8+
* [Methods](de/examples/section_3/methods.md)
9+
* [Arrays](de/examples/section_3/arrays.md)
10+
* [Struct](de/examples/section_3/struct.md)
11+
* [section\_1](en/examples/section_1/README.md)
12+
* [Primitives](en/examples/section_1/primitives.md)
13+
* [Keywords](en/examples/section_1/keywords.md)
14+
* [Variables](en/examples/section_1/variables.md)
15+
* [Formatted Print](en/examples/section_1/hello_world.md)
16+
* [Strings](en/examples/section_1/strings.md)
17+
* [Comments](en/examples/section_1/comment.md)
18+
* [section\_4](en/examples/section_4/README.md)
19+
* [Files](en/examples/section_4/files.md)
20+
* [JSON](en/examples/section_4/json.md)
21+
* [Testing](en/examples/section_4/testing.md)
22+
* [Array Functions](en/examples/section_4/array-functions.md)
23+
* [section\_2](en/examples/section_2/README.md)
24+
* [Operators](en/examples/section_2/operator.md)
25+
* [Looping Constructs](en/examples/section_2/loops.md)
26+
* [If statement](de/examples/section_2/if-else.md)
27+
* [Match](en/examples/section_2/match.md)
28+
* [V por exemplos](pt-br/README.md)
29+
* [Contribuindo](pt-br/CONTRIBUTING.md)
30+
* [examples](pt-br/examples/README.md)
31+
* [section\_1](pt-br/examples/section_1/README.md)
32+
* [Comentários](pt-br/examples/section_1/comment.md)
33+
* [Primitivos](pt-br/examples/section_1/primitives.md)
34+
* [Palavras-chave](pt-br/examples/section_1/keywords.md)
35+
* [section\_2](pt-br/examples/section_2/README.md)
36+
* [Operadores](pt-br/examples/section_2/operators.md)
37+
* [V mit einem Beispiel](de/README.md)
38+
* [examples](de/examples/README.md)
39+
* [section\_3](de/examples/section_3/README.md)
40+
* [Methods](de/examples/section_3/methods.md)
41+
* [Struct](de/examples/section_3/struct.md)
42+
* [Functions](de/examples/section_3/functions.md)
43+
* [Arrays](de/examples/section_3/arrays.md)
44+
* [section\_4](de/examples/section_4/README.md)
45+
* [Testing](de/examples/section_4/testing.md)
46+
* [Array Functions](de/examples/section_4/array-functions.md)
47+
* [JSON](de/examples/section_4/json.md)
48+
* [Files](de/examples/section_4/files.md)
49+
* [section\_2](de/examples/section_2/README.md)
50+
* [Looping Constructs](de/examples/section_2/loops.md)
51+
* [If statement](de/examples/section_2/if-else.md)
52+
* [Match](de/examples/section_2/match.md)
53+
* [Operators](de/examples/section_2/operator.md)
54+
* [section\_1](de/examples/section_1/README.md)
55+
* [Primitive Datentypen](de/examples/section_1/primitives.md)
56+
* [Schlüsselwörter](de/examples/section_1/keywords.md)
57+
* [Formatted Print](de/examples/section_1/hello_world.md)
58+
* [Strings](de/examples/section_1/strings.md)
59+
* [Kommentare](de/examples/section_1/comment.md)
60+
* [Variables](de/examples/section_1/variables.md)
61+
* [CONTRIBUTING\_de](de/CONTRIBUTING.md)
62+
* [V dengan Contoh](id/README.md)
63+
* [examples](id/examples/README.md)
64+
* [section1](id/examples/section1/README.md)
65+
* [Variabel](id/examples/section1/variables.md)
66+
* [Changelog](CHANGELOG.md)
67+
* [Contributing](CONTRIBUTING.md)
68+
* [Documentation Style Guide](docs_style_guide.md)
69+

de/README.md

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,70 @@
1-
# V by Example
1+
# V mit einem Beispiel
22

3-
[Brazilian Portuguese](../pt-br/README.md) | [Deutsch](README.md) | [English](../README.md)
3+
[Brazilian Portuguese](../pt-br/) \| [Deutsch](./) \| [English](../)
44

55
> Learn V by Examples
66
77
V by Example ist eine Einführung in V anhand von begleitenden, erklärten Codebeispielen.
88

9-
- [Beispiele](examples)
10-
- [Contributing](#contributing)
11-
- [License](#license)
9+
* [Beispiele](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/examples/README.md)
10+
* [Contributing](./#contributing)
11+
* [License](./#license)
1212

1313
Discord: [https://discord.gg/d3Qk65J](https://discord.gg/d3Qk65J)
1414

1515
## Kapitel 1
1616

1717
Eine Einführung in V mit einfachen Beispielen und Aufgaben.
1818

19-
- [Hello World](examples/section_1/hello_world.md)
20-
- [V Schlüsselwörter](examples/section_1/keywords.md)
21-
- [Primitives](examples/section_1/primitives.md)
22-
- [Variablen](examples/section_1/variables.md)
23-
- [Strings](examples/section_1/strings.md)
24-
- [Kommentare](examples/section_1/comment.md)
19+
* [Hello World](examples/section_1/hello_world.md)
20+
* [V Schlüsselwörter](examples/section_1/keywords.md)
21+
* [Primitives](examples/section_1/primitives.md)
22+
* [Variablen](examples/section_1/variables.md)
23+
* [Strings](examples/section_1/strings.md)
24+
* [Kommentare](examples/section_1/comment.md)
2525

2626
## Kapitel 2
2727

2828
Dieses Kapitel behandelt bedingte Anweisungen, Schleifen und andere wichtige Operatoren in V.
2929

30-
- [Operatoren](examples/section_2/operator.md)
31-
- [If-else](examples/section_2/if-else.md)
32-
- [Match](de/examples/section_2/match.md)
33-
- [Schleifen](de/examples/section_2/loops.md)
30+
* [Operatoren](examples/section_2/operator.md)
31+
* [If-else](examples/section_2/if-else.md)
32+
* [Match](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_2/match.md)
33+
* [Schleifen](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_2/loops.md)
3434

3535
## Kaptiel 3
3636

3737
Hier wird die wichtigste Datenstruktur in V behandelt: `Array`s und `Struct`s. Beinhaltet sind weiterhin Beispiele und Erklärungen zu den Themen Funktionen und Methoden.
3838

39-
- [Funktionen](de/examples/section_3/functions.md)
40-
- [Arrays](de/examples/section_3/arrays.md)
41-
- [Struct](de/examples/section_3/struct.md)
42-
- [Methoden](de/examples/section_3/methods.md)
39+
* [Funktionen](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_3/functions.md)
40+
* [Arrays](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_3/arrays.md)
41+
* [Struct](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_3/struct.md)
42+
* [Methoden](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_3/methods.md)
4343

4444
## Kapitel 4
4545

46-
In diesem Kapitel werden Arrays noch einmal vertieft. Es wird hier auch auf das Format `JSON` eingegangen, der Bereich Dateioperationen (lesen und schreiben), sowie Testing gezeigt.
46+
In diesem Kapitel werden Arrays noch einmal vertieft. Es wird hier auch auf das Format `JSON` eingegangen, der Bereich Dateioperationen \(lesen und schreiben\), sowie Testing gezeigt.
4747

48-
- [Array Funktionen](de/examples/section_4/array-functions.md)
49-
- [Testing](de/examples/section_4/testing.md)
50-
- [File-IO](de/examples/section_4/files.md)
51-
- [JSON](de/examples/section_4/json.md)
48+
* [Array Funktionen](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_4/array-functions.md)
49+
* [Testing](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_4/testing.md)
50+
* [File-IO](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_4/files.md)
51+
* [JSON](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/de/examples/section_4/json.md)
5252

5353
## Team
5454

5555
Derzeitige Liste der Autoren/Maintainer
5656

57-
- [Don Alfons Nisnoni](https://github.com/dhonx)
58-
- [Ivo-Balbaert](https://github.com/ibalbaert)
59-
- [Sven Patrick Meier](https://github.com/SuicideS3ason)
60-
- [Swastik Baranwal](https://github.com/Delta456)
61-
- [Vitor Oliveira](https://github.com/vbrazo)
57+
* [Don Alfons Nisnoni](https://github.com/dhonx)
58+
* [Ivo-Balbaert](https://github.com/ibalbaert)
59+
* [Sven Patrick Meier](https://github.com/SuicideS3ason)
60+
* [Swastik Baranwal](https://github.com/Delta456)
61+
* [Vitor Oliveira](https://github.com/vbrazo)
6262

6363
## Contributing
6464

65-
Um etwas beizutragen einfach den [Contributing-Guide](CONTRIBUTING.md) lesen, die Schritte befolgen und los geht's! Wir wählen Maintainer aufgrund ihrer Beiträge zum Projekt aus.
65+
Um etwas beizutragen einfach den [Contributing-Guide](contributing.md) lesen, die Schritte befolgen und los geht's! Wir wählen Maintainer aufgrund ihrer Beiträge zum Projekt aus.
6666

6767
## Lizenz
6868

69-
[MIT](LICENSE)
69+
[MIT](https://github.com/v-community/v_by_example/tree/73c4624c87adba104b8015caaf7e04cd7426732f/de/LICENSE/README.md)
70+

de/examples/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# examples
2+

de/examples/section_1/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# section\_1
2+

de/examples/section_2/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# section\_2
2+

de/examples/section_3/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# section\_3
2+

de/examples/section_4/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# section\_4
2+

en/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# en
2+

en/examples/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# examples
2+

en/examples/section_1/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# section\_1
2+

0 commit comments

Comments
 (0)