Skip to content

Instantly share code, notes, and snippets.

@JessicaWachtel
Created December 15, 2025 18:34
Show Gist options
  • Select an option

  • Save JessicaWachtel/d25ebef21a225089d5374c56984e93eb to your computer and use it in GitHub Desktop.

Select an option

Save JessicaWachtel/d25ebef21a225089d5374c56984e93eb to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<h2>Wasm 2025 Component Demo</h2>
<input type="number" id="num1" value="40">
<input type"number" id="num2" value="2">
<button onclick="doMath()">Add with Wasm</button>
<p id="result">Result will appear here.</p>
<!-- Load our JS entry point as a module -->
<script type="module" src="./index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment