This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Jonah Henriksson
jonahplusplus.dev
did:plc:j5sgv2n2ndcz4ldwvs7mqhzb
You mean something like `&mut int`? In Rust, adding mut to a function parameter (e.g. `fn foo(mut x: i32)`) just means that you can mutate x in that function (since the parameter will be copied). `&mut i32` means that the reference is mutable (as opposed to `&i32`).
2025-01-06T21:31:03.529Z