mirror of
https://github.com/tribufu/unwrap-gui
synced 2025-06-15 18:54:19 +00:00
10 lines
174 B
Rust
10 lines
174 B
Rust
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use unwrap_gui::*;
|
|
|
|
fn main() {
|
|
let option: Option<()> = None;
|
|
option.unwrap_gui();
|
|
}
|