Last active
July 4, 2025 20:33
-
-
Save ernestohs/647ee6add3adda798b505ba9f5601ce0 to your computer and use it in GitHub Desktop.
Code comment for https://www.youtube.com/watch?v=NU26dZFy6Po
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 int AddTwoIfNumberIsTwo(int number) { | |
if (number == 2) | |
{ | |
number += 2; | |
} | |
return number; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment