1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
//! # Rust Basic
//!
//! `RustBasic` is a planned development that aims to make Rust easy to learn, teach, and use.
// rustbasic - lib.rs
#[macro_use]
pub mod macros;
pub mod rustbasic;
pub use crate::macros::*;
pub use crate::rustbasic::*;
/*
use rustbasic::rustbasic::{
errexit(),
get_ok(),
get_err(),
};
*/
// {
// pub use super::*;
// }