Skip to content

Instantly share code, notes, and snippets.

@yaboong
Created September 13, 2022 09:12
Show Gist options
  • Save yaboong/2ab9ed686c85aac46da1969a93b5b5c8 to your computer and use it in GitHub Desktop.
Save yaboong/2ab9ed686c85aac46da1969a93b5b5c8 to your computer and use it in GitHub Desktop.
medium-story1-code1
public class Main {
public static void main(String[] args) {
int argument = 4;
argument = someOperation(argument);
}
private static int someOperation(int param){
int tmp = param * 3;
int result = tmp / 2;
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment