aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zhou <vicode117@gmail.com>2021-12-16 10:31:19 +0800
committerGitHub <noreply@github.com>2021-12-16 10:31:19 +0800
commitf8e93df8652efc36e8f16459ee56805d05594c4c (patch)
treebb9fc7058aa1e8fffec0b83c89172529b15d4e20
parentc364394690051c83fff04a38c1d5b3247b425c6f (diff)
downloadtranslated-content-f8e93df8652efc36e8f16459ee56805d05594c4c.tar.gz
translated-content-f8e93df8652efc36e8f16459ee56805d05594c4c.tar.bz2
translated-content-f8e93df8652efc36e8f16459ee56805d05594c4c.zip
Sync WebAssembly/Concepts, zh-CN (#3363)
1. add new way to write WebAssembly.
-rw-r--r--files/zh-cn/webassembly/concepts/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/files/zh-cn/webassembly/concepts/index.html b/files/zh-cn/webassembly/concepts/index.html
index baf2881e6d..36ad35939e 100644
--- a/files/zh-cn/webassembly/concepts/index.html
+++ b/files/zh-cn/webassembly/concepts/index.html
@@ -91,12 +91,13 @@ translation_of: WebAssembly/Concepts
<p>现在让我们讨论如何在实践中使用这些基本要素。</p>
-<p>WebAssembly生态系统处在初始阶段;更多的工具会毫无疑问得不断出现。当然,有两个主要的着手点:</p>
+<p>WebAssembly生态系统处在初始阶段;更多的工具会毫无疑问得不断出现。当前,有四个主要的着手点:</p>
<ul>
<li>使用Emscripten移植一个C/C++应用程序。</li>
<li>直接在汇编层,编写或生成WebAssembly代码。</li>
<li>编写Rust程序,将WebAssembly作为它的输出。</li>
+ <li>使用<a href="https://www.assemblyscript.org/">AssemblyScript</a>,它类似于TypeScript并且可编译成二进制WebAssmebly代码</li>
</ul>
<p>让我们讨论这几项:</p>