12 lines
137 B
Plaintext
12 lines
137 B
Plaintext
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface the-name {
|
||
|
|
a: func();
|
||
|
|
}
|
||
|
|
|
||
|
|
world module {
|
||
|
|
import foo:dep/the-name;
|
||
|
|
import the-name;
|
||
|
|
export the-name;
|
||
|
|
}
|