在Wasmer中“将其嵌入其他语言”是什么意思?

问题描述 投票:0回答:1

[在https://wasmer.io上说

Use the tools you know and the languages you love. Compile everything to WebAssembly. Run it on any OS or embed it into other languages.

embed it into other languages是什么意思?我已经用谷歌搜索,但是找不到任何相关的答案。

假设,我有一个编译为WebAssembly的python程序,并且有一个Java程序可以使用它。

  1. 我可以将python程序嵌入Java程序中吗?
  2. 这是“嵌入其他语言”吗?
  3. 如何做?
webassembly
1个回答
1
投票

他们的意思是,您可以将Wasmer运行时本身嵌入各种语言,然后使用这种嵌入来运行从任何其他源语言编译的WebAssembly,只要它对任何输入/输出都使用WASI API

© www.soinside.com 2019 - 2024. All rights reserved.