1 2 3 4 5 6 7 8 9 10 11
//! This file includes the contents of the project's README.md so the code examples in it can be run //! as Rust doc tests macro_rules! doc { ($e:expr) => { #[doc = $e] extern {} }; } doc!(include_str!("../README.md"));