diff options
| author | Brian Cully <bjc@spork.org> | 2025-08-07 11:40:05 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-08-07 11:42:35 -0400 |
| commit | b2e411de770a437dbdf31408b877e2952759e57a (patch) | |
| tree | ecb124526bca7c8aa1a6a48999188a393bce1c71 /index.html | |
| download | addem-rust-wasm-b2e411de770a437dbdf31408b877e2952759e57a.tar.gz addem-rust-wasm-b2e411de770a437dbdf31408b877e2952759e57a.zip | |
WORKING add test
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..1aad79c --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>wasm test</title> + </head> + + <body> + <h1>wasm test</h1> + <input type='number' id='number-input1' placeholder='5'> + <input type='number' id='number-input2' placeholder='3'> + <button onclick='calculate()'>calc</button> + <p> + result: <span id='result'></span> + </p> + + <script src='./main.mjs' type='module'></script> + </body> +</html> |
