14 lines
155 B
Plaintext
14 lines
155 B
Plaintext
package foo:foo;
|
|
|
|
interface foo {
|
|
record my-struct {
|
|
a: u32,
|
|
}
|
|
|
|
my-function: func(a: my-struct) -> string;
|
|
}
|
|
|
|
world export-foo {
|
|
export foo;
|
|
}
|