Created
September 13, 2022 09:12
-
-
Save yaboong/2ab9ed686c85aac46da1969a93b5b5c8 to your computer and use it in GitHub Desktop.
medium-story1-code1
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
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