diff options
| -rw-r--r-- | haskell.html.markdown | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/haskell.html.markdown b/haskell.html.markdown index 1cc79ec9..328da5c9 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -61,6 +61,8 @@ not False -- True  -- A string is a list of characters  ['H', 'e', 'l', 'l', 'o'] -- "Hello" + +-- Lists can be indexed with the `!!` operator followed by an index  "This is a string" !! 0 -- 'T' | 
