Last active
August 5, 2018 04:20
-
-
Save shkcodes/9a47614143b118b199d136283dc03ff2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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(int p1, int p2, String p3) { | |
B objectB = new B(p1, p2, p3); | |
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