Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/component-macro/tests/codegen/strings.wit
1692 views
package foo:foo;

interface strings {
  a: func(x: string);
  b: func() -> string;
  c: func(a: string, b: string) -> string;
}

world the-world {
  import strings;
  export strings;
}