Path: blob/main/crates/component-macro/tests/codegen/floats.wit
3075 views
package foo:foo;
interface floats {
f32-param: func(x: f32);
f64-param: func(x: f64);
f32-result: func() -> f32;
f64-result: func() -> f64;
}
world the-world {
import floats;
export floats;
}