Skip to content

Instantly share code, notes, and snippets.

@goodylili
Created July 16, 2022 09:17
Show Gist options
  • Save goodylili/1898ec4a5165fbaff360e287a78da9fb to your computer and use it in GitHub Desktop.
Save goodylili/1898ec4a5165fbaff360e287a78da9fb to your computer and use it in GitHub Desktop.
fltk demo
// [dependencies]
// fltk = { version = "^1.3", features = ["fltk-bundled"] }
use fltk::{app, prelude::*, window::Window};
fn my_app() {
let app = app::App::default();
let mut app_window = Window::new(100, 100, 400, 300, "Checking out the FLTK-rs Library");
app_window.end();
app_window.show();
app.run().unwrap();
}
fn main() {
my_app()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment