mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-08 15:39:10 +08:00
10 lines
140 B
Rust
Executable File
10 lines
140 B
Rust
Executable File
use gui::Screen;
|
|
|
|
fn main() {
|
|
let screen = Screen {
|
|
components: vec![Box::new(String::from("Hi"))],
|
|
};
|
|
|
|
screen.run();
|
|
}
|