I watched starting with IntelliJ and Scala videos from JetBrains and running into two problems.
- I can not get it to create or run a launch configuration
- I do not see the scala -test library as a choice in ProjectStructure-Modules-ChooseLibraries
What I have done so far
- Install Scala, add path and environment variables
- Install Scala intellij plugin
- Create sdk project project for java 1.7 and Scala home / usr / local / share / scala -2.10.3
- Create an object that extends from the application with a simple line of writing:

Object with one source file
object HelloWorld{
def main(args: Array[String]) {
println("hello")
}
}
, Scala . , , "", , src ""
