Advertisement
Guest User

Untitled

a guest
Jun 7th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $ cat mymod.py
  2. print("Hello, mymod")
  3. (0) austin@Austins-Mac-303:~/Code/foo
  4. $ cat myprog.py
  5. import mymod
  6. print("Hello, myprog")
  7. (0) austin@Austins-Mac-303:~/Code/foo
  8. $ python myprog.py
  9. Hello, mymod
  10. Hello, myprog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement