When I launched the Scala hello world application, for example
package pack object App { def main(args: Array[String]) { println("Hello, world!") }
in Idea 10.0.3, I get compilation errors
'Application' for D: \ program \ java2 \ scala3 \ from \ Production \ scala3 \ package \ App.class (File name, directory name, or incorrect volume label syntax)
'Application' for D: \ program \ java2 \ scala3 \ from \ Production \ scala3 \ package \ App $ .class (File name, directory name, or incorrect volume label syntax)
How can I handle this?
source share