wit-bindgen-cli 0.56.0

CLI tool to generate bindings for WIT documents and the component model.
using System.Diagnostics;

namespace TestWorld.wit.Exports.test.dep.v0_1_0 {
    public class TestExportsImpl : TestWorld.wit.Exports.test.dep.v0_1_0.ITestExports
    {
        public static float X() {
            return 1.0f;
        }
        
        public static float Y(float a){
            return a + 1.0f;
        }
    }
}

namespace TestWorld.wit.Exports.test.dep.v0_2_0
{
    public class TestExportsImpl : TestWorld.wit.Exports.test.dep.v0_2_0.ITestExports
    {
        public static float X() {
            return 2.0f;
        }
        
        public static float Z(float a, float b){
            return a + b + 2.0f;
        }
    }
}