1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # 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 rustbasicmacro;
pub mod rustbasic {
    pub use super::*;
//    pub use crate::rustbasic::*;
}

// use rustbasic-macro::*;