Created
January 21, 2024 10:19
-
-
Save TheRealAbhinav/b3fc489c8c48c50f8e0effd8dacf212d to your computer and use it in GitHub Desktop.
First gist
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 static String work(int pay){ | |
if(pay > 10000){ | |
return "sell soul"; | |
} | |
else{ | |
return "don't sell soul"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment