Skip to content

Instantly share code, notes, and snippets.

@higordiego
Last active April 25, 2019 18:50
Show Gist options
  • Save higordiego/e12d9b76dca8f9029b61cd5ad6763bc2 to your computer and use it in GitHub Desktop.
Save higordiego/e12d9b76dca8f9029b61cd5ad6763bc2 to your computer and use it in GitHub Desktop.
mod user {
pub mod hourse {
fn print_room() {
print!("limpando...");
}
pub mod room {
pub fn clear() {
super::print_room();
}
}
}
mod car {}
}
use crate::user::hourse;
fn main() {
hourse::room::clear()
}
/*
limpando...
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment