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

interface chars {
  /// A function that accepts a character
  take-char: func(x: char);
  /// A function that returns a character
  return-char: func() -> char;
}

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