//! # Embed Rust 🚀 in Rust 🚀 easily. //! To get started, add `use embed-rust`🚀`-in-rust`🚀`::*;` to your code //! //! Then, create a function called `main` //! //! Congratulations! You have now embedded Rust 🚀 in Rust 🚀! //! //! Ferris is proud of you. /// This function tells you if the code is running in Rust 🚀. // There's more to this code then it seems, but it's a secret pub fn is_in_rust() -> bool { true } #[cfg(test)] mod tests { use super::*; #[test] fn it_works() { // Tests run in Rust 🚀, thus it needs to be true let result = is_in_rust(); assert_eq!(result, true); } }