Package naming structure

scala

Solution

It's the same as:

package myco.group.component.foo.bar

import mco.group.component._
import mco.group.component.foo._
import mco.group.component.foo.bar._

Also the same as:

package myco.group.component {
    package foo {
        package bar {
        ...
        }
    }
}

Problem

What does this package naming structure accomplish in a Scala file? ``` package myco.group.component package foo package bar ```

Original source