//! root as a binary(or executable) crate named learn_rust.
//! also, this binary can import learn_rust as library crate.
//! a binary crate itself cannot be imported from other crates
pub use lrk;
// can directly import not through lib.rs.
// define a module as binary crate root.