11 lines
121 B
Plaintext
11 lines
121 B
Plaintext
package test:test;
|
|
|
|
interface test {
|
|
foo: func(v: s32) -> s32;
|
|
}
|
|
|
|
world lib-foo {
|
|
import test;
|
|
export test;
|
|
}
|