Guest User

Untitled

a guest
Jun 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. fn my_fn() {
  2. mod my_stuff {
  3. pub fn my_fns_fn() {
  4. println!("hello from {}", module_path!());
  5. }
  6. }
  7. my_stuff::my_fns_fn()
  8. }
  9.  
  10. fn main() {
  11. my_fn()
  12. }
Add Comment
Please, Sign In to add comment