Skip to content

Commit

Permalink
[haskell/de] Added missing comment line about index operator (#5124)
Browse files Browse the repository at this point in the history
  • Loading branch information
jklebes authored Sep 17, 2024
1 parent 3623cba commit 2b9e893
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion de-de/haskell-de.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ not False -- True

-- Ein String ist eine Liste von Zeichen.
['H', 'a', 'l', 'l', 'o', '!'] -- "Hallo!"

-- Der "!!"-Operator extrahiert das Element an einem bestimmten Index
"Das ist eine String" !! 0 -- 'D'


Expand All @@ -87,7 +89,7 @@ not False -- True
[5..1] -- [], da Haskell standardmässig inkrementiert.
[5,4..1] -- [5,4,3,2,1]

-- Der "!!"-Operator extrahiert das Element an einem bestimmten Index:
-- Ein Element per Index extrahieren:
[1..10] !! 3 -- 4

-- Haskell unterstützt unendliche Listen!
Expand Down

0 comments on commit 2b9e893

Please sign in to comment.