19 строки
461 Б
HTML
19 строки
461 Б
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Go WebAssembly</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<script src="wasm_exec.js" defer></script>
|
|
<script src="wasm.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>WebAssembly</h1>
|
|
<p>Edit on either side to mimic values, using WebAssembly:</p>
|
|
<input type="text" id="a" value=""/>==<input type="text" id="b" value=""/>
|
|
</body>
|
|
|
|
</html>
|