1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # 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 mod macros;
pub mod rustbasic;
pub mod stopwatch;

pub use crate::macros::*;
pub use crate::rustbasic::*;
pub use crate::stopwatch::*;