I have created a .scala file in the Scala version of eclipse, it has a main and object. I want to somehow compile this possibly into a jar file, so I can run it from terminal?
any info will be appreciated.
Thanks, Rhys
Here is the full process from the command line:
evan@vbox ~> cat test.scala
object test{
def main(args: Array[String]): Unit = println("Hello!")
}
evan@vbox ~> scalac test.scala
evan@vbox ~> scala test
Hello!
However if you want to use Scala IDE to its full potential I would check out this tutorial.
scala and scalac are in your path. How to do this depends on how you installed scalaTo create the JAR, follow this:
Then you can run it with
java -cp /path/to/My.jar com.co.package.MyObj