iced-yoda/examples/stopwatch/src/main.rs

7 lines
120 B
Rust
Raw Normal View History

use iced::{Application, Settings};
use stopwatch::Stopwatch;
2019-12-13 23:58:23 +01:00
pub fn main() {
2019-12-14 00:45:38 +01:00
Stopwatch::run(Settings::default())
2019-12-13 23:58:23 +01:00
}