Advertisement
nnimos

Untitled

May 5th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. -- Startup code for Sending PC
  2.  
  3. function HomeScreen()
  4. print("Welcome to The Bank Of Nimrodia")
  5. print("Please select an option from below:")
  6. print("")
  7. print("1 - Access Account")
  8. print("2 - Deposit into Safety Box")
  9. print("3 - View Account details")
  10. end
  11.  
  12. function ChoiceSelection()
  13. write("Please enter the number of your choice: ")
  14. local choice = read("")
  15. end
  16.  
  17.  
  18. HomeScreen()
  19. ChoiceSelection()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement