minimal-rust-wasm 0.2.0

An extremely minimal Rust + WASM example.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Rust + WASM</title>
</head>
<body>
  <script src="target/index.js"></script>
  <script>
    wasm_bindgen("target/index.wasm");
  </script>
</body>
</html>