Vibe coded "timestamps"

This commit is contained in:
Leon Mika 2025-11-19 21:20:06 +11:00
parent 35270f72ca
commit 7bf586757a
6 changed files with 441 additions and 0 deletions

8
site/timestamps/main.js Normal file
View file

@ -0,0 +1,8 @@
import "/wasm/wasm_exec.js";
const go = new Go();
WebAssembly.instantiateStreaming(fetch("/wasm/timestamps.wasm"), go.importObject)
.then((result) => {
go.run(result.instance);
});