Scala String Get Char

scala> "hello"(0)
res1: Char = h

scala> "hello"(1)
res2: Char = e
Sasso