Reputation: 47921
I have been following the getting started with IntelliJ and Scala video from JetBrains and running into two problems.
What I've done so far is
The one source file object
object HelloWorld{
def main(args: Array[String]) {
println("hello")
}
}
In the video they right click on the object file and can see a selection of run, but in my case I only see run as Scala Console. I can't seem to get the debugger to work and when I try to create a run configuration as an "Application" it says the src file is "not acceptable"
Upvotes: 4
Views: 3846