```rust #[interrupt(TIMER0_IRQ)] fn handle_timer_tick() { #[safe_static] static ref MY_COUNTER: u32 = 0; MY_COUNTER += 1; }