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