1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! # Rust Basic
//!
//! `RustBasic` is a planned development that aims to make Rust easy to learn, teach, and use.
// rustbasic - lib.rs
pub use rustbasic_macro::*;
// pub use futures::executor::block_on;
pub mod macros;
pub mod rename;
pub mod stopwatch;
pub use crate::macros::*;
pub use crate::rename::*;
pub use crate::stopwatch::*;