Scala
object Main { val target = "stressed" def main(args: Array[String]): Unit = { solve() } def solve() = { println(target reverse) } }