Advertisement
a1ananth

main.py

Oct 21st, 2011
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. from Classes import Functions           # import the Handlers and Functions
  2.  
  3. functions = Functions()    # functions object
  4.  
  5. # program main flow
  6.  
  7. while (1):
  8.     choice = functions.getChoice()
  9.     functions.perform(choice)
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement