Guest User

Untitled

a guest
Jan 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. X = Routine_A()
  2. Y = Routine_B(x)
  3.  
  4. Routine_A("run B")
  5.  
  6. private void Routine_A(String theCommand) {
  7. // A's unique code
  8.  
  9. if (theCommand.equals("run B") {
  10. // b's code
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment