14 lines
153 B
Plaintext
14 lines
153 B
Plaintext
|
|
package test:test;
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
resource x {
|
||
|
|
constructor(v: u32);
|
||
|
|
get: func() -> u32;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
world lib-foo {
|
||
|
|
import foo;
|
||
|
|
export foo;
|
||
|
|
}
|