What does this package naming structure accomplish in a Scala file?
package myco.group.component
package foo
package bar
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 {
...
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With