mod smooth_pitch;
use vedasynth::Tweenable;
fn main() {
let mut tweenable = Tweenable::new(1.0);
tweenable.tween_to(0.5, 0.1);
println!("O={}", tweenable.current());
for i in 0..11 {
println!("V={}", tweenable.advance(0.01));
}
println!("O={}", tweenable.current());
}