WebAssembly Demo

Interactive WebAssembly experiments and demos

WebAssembly Rust Computations

Real WebAssembly functions written in Rust and compiled to WASM. Check the browser console to see WASM logs!

WebAssembly Functions Available

The Rust WASM module provides these functions:

  • fibonacci(n) - Efficient Fibonacci calculation
  • fibonacci_sum(a, b) - Sum of two Fibonacci numbers
  • prime_count(limit) - Count primes using Sieve of Eratosthenes
  • matrix_multiply_sum(size) - Matrix multiplication with summation

✅ Success! You're now running real WebAssembly compiled from Rust! Open the browser console to see WASM logs.