iced/examples/stopwatch/src/main.rs
2020-03-04 04:10:26 +01:00

6 lines
120 B
Rust

use iced::{Application, Settings};
use stopwatch::Stopwatch;
pub fn main() {
Stopwatch::run(Settings::default())
}