10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
|
|
package root:component;
|
||
|
|
|
||
|
|
world root {
|
||
|
|
import foo: func();
|
||
|
|
import bar: func() -> string;
|
||
|
|
|
||
|
|
export baz: func();
|
||
|
|
export foo2: func(x: string) -> option<list<u8>>;
|
||
|
|
}
|