Reputation: 15792
When I run my Scala hello world application, like
package pack
object App {
def main(args: Array[String]) {
println("Hello, world!")
}
on Idea 10.0.3, I get compile errors
'App' to D:\prog\java2\scala3\out\production\scala3\pack\App.class (The filename, directory name, or volume label syntax is incorrect)
'App' to D:\prog\java2\scala3\out\production\scala3\pack\App$.class (The filename, directory name, or volume label syntax is incorrect)
How can I deal with it?
Upvotes: 6
Views: 1276