Skip to content

Instantly share code, notes, and snippets.

@shkcodes
Last active August 5, 2018 04:20
Show Gist options
  • Save shkcodes/9a47614143b118b199d136283dc03ff2 to your computer and use it in GitHub Desktop.
Save shkcodes/9a47614143b118b199d136283dc03ff2 to your computer and use it in GitHub Desktop.
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