Skip to content

Instantly share code, notes, and snippets.

@ucguy4u
Created September 24, 2020 03:13
Show Gist options
  • Save ucguy4u/ab2ff2dd0e98a16ddda32a7d7ac28708 to your computer and use it in GitHub Desktop.
Save ucguy4u/ab2ff2dd0e98a16ddda32a7d7ac28708 to your computer and use it in GitHub Desktop.
/**
* @author uschauha
*/
public class Main {
public static void main(String[] args) {
int localValue = 5;
calculate(localValue);
System.out.println(localValue);
}
private static void calculate(int calValue) {
calValue = calValue * 100;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment