1
2
3
4
5
6
7
8
9
pub mod core {
  pub fn test_more() -> String {
    println!("Testing more");
    "chode manz".to_string()
  }
  pub fn chode() {
    println!("Chode manz");
  }
}