// Generated by Brevity. Do not edit. package wit.wasmo.testing import kotlin.Long import kotlin.wasm.WasmExport private lateinit var WasmoTesting_guest: WasmoTesting.Guest public var WasmoTesting.guest: WasmoTesting.Guest get() = WasmoTesting_guest set(`value`) { WasmoTesting_guest = `value` } @WasmExport("wasmo:testing/calculator#multiply") private fun WasmoTesting_guest_multiply(a: Long, b: Long): Long = WasmoTesting_guest.calculator.multiply(a, b) @WasmExport("wasmo:testing/wasmo-testing#sum") private fun WasmoTesting_guest_sum(a: Long, b: Long): Long = WasmoTesting_guest.sum(a, b)