16 lines
151 B
Plaintext
16 lines
151 B
Plaintext
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface a {}
|
||
|
|
interface b {}
|
||
|
|
|
||
|
|
world bar {
|
||
|
|
import a;
|
||
|
|
export b;
|
||
|
|
}
|
||
|
|
|
||
|
|
world foo {
|
||
|
|
include bar;
|
||
|
|
include bar;
|
||
|
|
include bar;
|
||
|
|
}
|