diff --git a/README.md b/README.md index 911a309..cceaa42 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,10 @@ App::new() You should then see `my_print: 'Hello world!'` printed in your console. +### Demo + +![demo](demo.gif) + ### Provided examples You can also try running provided examples by cloning this repository and running `cargo run --example _`. For example: diff --git a/demo.gif b/demo.gif new file mode 100644 index 0000000..a1df633 Binary files /dev/null and b/demo.gif differ diff --git a/src/lib.rs b/src/lib.rs index a5e2217..91be466 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -145,6 +145,10 @@ //! //! You should then see `my_print: 'Hello world!'` printed in your console. //! +//! ## Demo +//! +//! ![demo](demo.gif) +//! //! ## Provided examples //! //! You can also try running provided examples by cloning this repository and running `cargo run --example _`. For example: