summaryrefslogtreecommitdiffstats
path: root/examples/clock/src/main.rs
blob: 454ff4f0c2e9ca8744641f03dce0e379d15ca947 (plain) (blame)
1
2
3
4
5
6
7
8
9
use clock::Clock;
use iced::{Application, Settings};

pub fn main() {
    Clock::run(Settings {
        antialiasing: true,
        ..Settings::default()
    })
}