I am a beginner in Scala. I installed Scala IDE in eclipse and now I want to run my application programme. It never shows \"run as Scala application\", instead it shows \"run
Download from this link Scala IDE
Restart Eclipse, create Scala Project, then create Scala Object and type this.
package greeter object Hello { def main(args:Array[String]) { println("Hello, World") } }
Run as Scala Application