11 lines
143 B
Plaintext
11 lines
143 B
Plaintext
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface bar {
|
||
|
|
foo: func(s: string) -> string;
|
||
|
|
}
|
||
|
|
|
||
|
|
world module {
|
||
|
|
export bar;
|
||
|
|
export foo: func(s: string) -> string;
|
||
|
|
}
|