Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. fn main() {
  2. greetings::hello();
  3. }
  4.  
  5. fn hello() {
  6. println!("Hello, world!");
  7. }
  8.  
  9. mod greetings {
  10. pub fn hello() {
  11. super::hello();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement