Skip to content

Instantly share code, notes, and snippets.

@sjdonado
Created May 8, 2023 19:02
Show Gist options
  • Save sjdonado/359efaaacd32c6a674d131d4eb57ebae to your computer and use it in GitHub Desktop.
Save sjdonado/359efaaacd32c6a674d131d4eb57ebae to your computer and use it in GitHub Desktop.
Tower of Hanoi in P5.js + WASM - Dev.to
const getHanoiMoves = async (n) => new Promise((resolve) => {
wasmWorker.onmessage = (event) => resolve(event.data);
wasmWorker.postMessage({ n });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment