Strings are lists of characters
"hello"
is the same as ['h', 'e', 'l', 'l', 'o']
Strings have type [Char]
, which is synonymous with String
.
Strings are lists of characters
"hello"
is the same as ['h', 'e', 'l', 'l', 'o']
Strings have type [Char]
, which is synonymous with String
.