Showing posts with label scala. Show all posts
Showing posts with label scala. Show all posts

Saturday, 18 August 2018

scala object hello world eclipse example

scala hello world eclipse

object HelloWorldScala {
  def main(args: Array[String]) {
    println("Hello Scala !!")
  }
}

output will be as like bellow

Hello Scala !!