Last active
August 5, 2018 04:21
-
-
Save shkcodes/cfe3cf34e513eb7dceaeb6517db86e11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Class A { | |
public int doSomeWork() { | |
B objectB = new B(); | |
int result = objectB.getResult(); | |
int finalResult = result * 2; | |
return finalResult; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment