Haskell
pure functional programming language, strong static typing (like Scala)
a string is just a list of characters
Prelude> ['a', 'b']
"ab"
Prelude> "hello" ++ " world"
"hello world"
In Haskell, indentation is significant
Haskell
pure functional programming language, strong static typing (like Scala)
a string is just a list of characters
Prelude> ['a', 'b']
"ab"
Prelude> "hello" ++ " world"
"hello world"
In Haskell, indentation is significant