var importObject = {
funcs: {
echo: arg => document.write(arg),
log: console.log
}
};
如何使用WebAssembly在一个方法中调用上面的 echo 和 log 方法?使用WebAssembly提供的文本格式代码。
var importObject = {
funcs: {
echo: arg => document.write(arg),
log: console.log
}
};
如何使用WebAssembly在一个方法中调用上面的 echo 和 log 方法?使用WebAssembly提供的文本格式代码。