inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
7
8
#[inline_tweak::release_tweak_fn]
fn main() {
    loop {
        let v = 3;
        println!("{}", v);
        std::thread::sleep(std::time::Duration::from_millis(500));
    }
}