Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created March 16, 2018 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rust-play/d16a426d743bd3d8744cd05a40f867ce to your computer and use it in GitHub Desktop.
Save rust-play/d16a426d743bd3d8744cd05a40f867ce to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
mod foo {
mod bar {
pub fn foobar() {
println!("hello");
}
}
}
fn main() {
foo::bar::foobar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment