Files
cli/vendor/wit-component/tests/interfaces/simple-world.wit.print

10 lines
105 B
Plaintext
Raw Normal View History

package foo:foo;
interface console {
log: func(arg: string);
}
world the-world {
import console;
}