31ph4n70m

reverse_string.scala

Nov 19th, 2019
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.19 KB | None | 0 0
  1. // Scala solution to codeabbey challenge 30
  2. object Main extends App{
  3.     // val a = scala.io.StdIn.readLine()
  4.     val a = "on fare supper off shelf jeopardy about cactus"
  5.     println(a.reverse)
  6. }
Add Comment
Please, Sign In to add comment