Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions de/examples/section_1/comment.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_1/hello_world.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_1/keywords.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_1/primitives.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Datentypen
---

# Primitive Datentypen

V hat weniger primitive Datentypen als Go.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_1/strings.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_1/variables.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Variables
---

# Variables

Variablen können in V mit dem `:=` Operator deklariert und initialisiert werden.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_2/if-else.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: If statement
---

# If statement

## The `if` statement
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_2/loops.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_2/match.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Match
---

# Match

## The `match` statement
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_2/operator.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Operators
---

# Operators

V bietet die folgenden Operatoren:
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_3/arrays.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_3/functions.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_3/methods.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Methods
---

# Methods

V does not have classes. But one can define methods for types.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_3/struct.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_4/array-functions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
version: 1.0.0
example_title: Array Functions
---

# Array Functions

## `repeat`
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_4/files.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_4/json.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions de/examples/section_4/testing.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down