Results 32 issues of Luke

Minimal reproducible example: ```rust let _ = create_root(move || { let a = create_signal(()); create_effect(move || { a.track(); // Track the signal as a dependency of the effect. a.dispose(); //...

C-bug
A-reactivity

**Background**: I am interested in compiling F# to a WASM component. So far, I've managed to get a simple WASI "Hello, world!" program compiling and running using componentize-dotnet. For the...