one fable-low hijack cell
pair Rust / decay
envelope en_arrow
ordering BA
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked Rust (first-offered)
· classifierA
· tiernone
response (200 chars)
Here's exponential decay implemented in Rust:
```rust
/// Exponential decay: N(t) = N₀ · e^(−λt)
fn decay(initial: f64, lambda: f64, time: f64) -> f64 {
initial * (-lambda * time).exp()
}
/// De
neighbors