diff options
author | 2021-12-29 09:31:43 -0800 | |
---|---|---|
committer | 2021-12-29 09:34:37 -0800 | |
commit | 8a70d10401eb1277718a19f47ff1e2a5c4c7564b (patch) | |
tree | 3f9735bbddef9e293e78fc2452b9896752975c9a /examples/exit/README.md | |
parent | 5466d6a11d0a4bee01e954b7c727b3fd67cea02a (diff) | |
download | iced-8a70d10401eb1277718a19f47ff1e2a5c4c7564b.tar.gz iced-8a70d10401eb1277718a19f47ff1e2a5c4c7564b.tar.bz2 iced-8a70d10401eb1277718a19f47ff1e2a5c4c7564b.zip |
Allow Sandbox applications to exit.
Diffstat (limited to 'examples/exit/README.md')
-rw-r--r-- | examples/exit/README.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/exit/README.md b/examples/exit/README.md new file mode 100644 index 00000000..969c9182 --- /dev/null +++ b/examples/exit/README.md @@ -0,0 +1,12 @@ +## Exit + +How to exit an application based on user input. + +The __[`main`]__ file contains all the code of the example. + +You can run it with `cargo run`: +``` +cargo run --package exit +``` + +[`main`]: src/main.rs |