12 lines
109 B
Plaintext
12 lines
109 B
Plaintext
package foo:foo;
|
|
|
|
interface foo {
|
|
type g = char;
|
|
}
|
|
|
|
world w {
|
|
use foo.{g};
|
|
|
|
export foo: func() -> g;
|
|
}
|