1
2
3
4
5
6
mod hello_rust;
pub use hello_rust::print_hello;

pub fn lib_hello(){
  println!("lib_hello");
}