Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For-Each Schleifen mit Index und Element #101

Open
bafto opened this issue Nov 21, 2024 · 0 comments
Open

For-Each Schleifen mit Index und Element #101

bafto opened this issue Nov 21, 2024 · 0 comments
Labels
Typ: Neues Feature Neues Feature

Comments

@bafto
Copy link
Member

bafto commented Nov 21, 2024

Wir haben bereits normale for-each Schleifen (bsp. Für jeden Buchstaben b in "Hallo" ...).
Oftmals ist es jedoch auch nützlich, nicht nur das momentane Element sondern auch den momentanen Index zu erhalten.
In Go sieht das so aus:

s := []string{"hallo", "welt", "!"}
for i, val := range s {
    fmt.Printf("Index: %d, value: %s", i, val)
}

Syntaxvorschlag für DDP:

Für jeden Buchstaben b mit Index i in "Hallo", mache:
    ...

Hierbei wäre i vom Typ Zahl.
Das geht natürlich für Texte und alle Listen Typen.

@bafto bafto added the Typ: Neues Feature Neues Feature label Nov 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Typ: Neues Feature Neues Feature
Projects
None yet
Development

No branches or pull requests

1 participant