> For the complete documentation index, see [llms.txt](https://v-community.gitbook.io/v-by-example/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://v-community.gitbook.io/v-by-example/de.md).

# V mit einem Beispiel

[Brazilian Portuguese](/v-by-example/pt-br.md) | [Deutsch](/v-by-example/de.md) | [English](https://github.com/v-community/v_by_example/tree/fda7e88bba5391b08eef738e1abb8604a4789491/en/README.md) | [Bahasa Indonesia](/v-by-example/id.md) | [Chinese](https://github.com/v-community/v_by_example/tree/fda7e88bba5391b08eef738e1abb8604a4789491/cn/README.md)

> Learn V by Examples

V by Example ist eine Einführung in V anhand von begleitenden, erklärten Codebeispielen.

* [Beispiele](/v-by-example/de/examples.md)
* [Contributing](/v-by-example/de.md#contributing)
* [License](/v-by-example/de.md#license)

Discord: <https://discord.gg/d3Qk65J>

## Kapitel 1

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

* [Hello World](/v-by-example/de/examples/section_1/hello_world.md)
* [V Schlüsselwörter](/v-by-example/de/examples/section_1/keywords.md)
* [Primitives](/v-by-example/de/examples/section_1/primitives.md)
* [Variablen](/v-by-example/de/examples/section_1/variables.md)
* [Strings](/v-by-example/de/examples/section_1/strings.md)
* [Kommentare](/v-by-example/de/examples/section_1/comment.md)

## Kapitel 2

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

* [Operatoren](/v-by-example/de/examples/section_2/operator.md)
* [If-else](/v-by-example/en/examples/section_2/if-else.md)
* [Match](/v-by-example/en/examples/section_2/match.md)
* [Schleifen](/v-by-example/de/examples/section_2/loops.md)

## Kaptiel 3

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.

* [Funktionen](broken://pages/-M-tqfbu-mSnyj9mHkqs)
* [Arrays](/v-by-example/en/examples/section_3/arrays.md)
* [Struct](broken://pages/-M-tqfbt8GXE-edPAxCw)
* [Methoden](/v-by-example/en/examples/section_3/methods.md)

## Kapitel 4

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.

* [Array Funktionen](/v-by-example/de/examples/section_4/array-functions.md)
* [Testing](/v-by-example/en/examples/section_4/testing.md)
* [File-IO](/v-by-example/en/examples/section_4/files.md)
* [JSON](/v-by-example/de/examples/section_4/json.md)

## Team

Derzeitige Liste der Autoren/Maintainer

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

## Contributing

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

## Lizenz

[MIT](https://github.com/v-community/v_by_example/tree/fda7e88bba5391b08eef738e1abb8604a4789491/LICENSE/README.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://v-community.gitbook.io/v-by-example/de.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
