inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
7
8
9
10
use inline_tweak::tweak;

fn main() {
    loop {
        let v = tweak!(16.5);
        let v2 = inline_tweak::tweak!(16.5);
        println!("{} {}", v, v2); // Try changing the value while the application is running
        inline_tweak::watch!();
    }
}