-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webassembly-wasi-experiments</title>
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>
<a href="./index.html" title="Back home page"
>webassembly-wasi-experiments</a
>
</h1>
<nav>
<ul class="list navigation">
<li>
<a href="./c-app.html" title="Test wasm version of the C program"
>c-app</a
>
</li>
<li>
<a
href="./rust-app.html"
title="Test wasm version of the Rust program"
>rust-app</a
>
</li>
</ul>
</nav>
</header>
<main>
<p class="logo-wrapper">
<img src="./assets/WASI.png" alt="WASI WebAssembly System Interface" />
</p>
<p>
Follow one of the links above to run the wasm module compiled from C or
Rust.
</p>
<p>
This website only shows the in-browser examples of WASI. Please checkout
<a href="https://github.com/topheman/webassembly-wasi-experiments"
>topheman/webassembly-wasi-experiments</a
>
for python, node and wasmtime implementations examples.
</p>
</main>
<footer>
<p class="copyright">
©2020-2021 -
<a href="http://labs.topheman.com/">labs.topheman.com</a> - Christophe
Rosset
</p>
</footer>
</body>
</html>