Created
July 16, 2022 09:17
-
-
Save goodylili/1898ec4a5165fbaff360e287a78da9fb to your computer and use it in GitHub Desktop.
fltk demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [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