Created
October 27, 2020 12:12
-
-
Save canvural/7748b22f554a7f3db2e899518e4aa667 to your computer and use it in GitHub Desktop.
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
void main() { | |
int a = 200; | |
if (a == 200) { | |
print('its 200'); | |
} | |
int b = 400; | |
if (b == 200) { | |
print('its 200 but 400'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment