I am new to Scala. I have come across this Scala program and it was asked in interview.
What is the output of the following program
object ApplyTo extends Application
{
val k = "gWU`UAXYjT[ig\\\\eBWca";
println(k map {c => (c - k.size).toChar toLower})
}
Please help. I am very new to Scala. I am also not sure that this program will even compile or not.