Hello World (Scala)

object Solution {
    def main(args: Array[String]) {
        // basic input
        val inputString = scala.io.StdIn.readLine()

        // basic output
        println("Hello, World.")
        println(inputString)
    }
}

Be the first to comment

Leave a Reply

Your email address will not be published.


*