Skip to content

Instantly share code, notes, and snippets.

@emberian
Last active December 18, 2015 18:39
Show Gist options
  • Save emberian/5827532 to your computer and use it in GitHub Desktop.
Save emberian/5827532 to your computer and use it in GitHub Desktop.
pub fn bar() {
println("Hello from foo.rs");
}
use foo::*;
mod foo;
fn main() {
// or you could do it here:
// use foo::*;
bar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment