lib_myfltk 0.1.6

Utility functions based on the FLTK.rs GUI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13


use lib_myfltk::input_fltk::*;

fn main() {
    let app = fltk::app::App::default();

    let choice = input_truefalse(&app, "Enter yes or no");
    
    println!("\n choice: {} \n", choice);
    
    app.run().unwrap();
}