fltk 0.9.3

Rust bindings for the FLTK GUI library
Documentation
// Calque example of the FLTK docs

use fltk::*;

fn callback() {
    println!("TICK");
    app::repeat_timeout(1.0, Box::new(callback));
}

fn main() {
    let app = app::App::default();
    let mut wind = window::Window::new(100, 100, 400, 300, "");
    wind.show();

    app::add_timeout(1.0, Box::new(callback));

    app.run().unwrap();
}