Skip to content

Instantly share code, notes, and snippets.

@canvural
Created October 27, 2020 12:12
Show Gist options
  • Save canvural/7748b22f554a7f3db2e899518e4aa667 to your computer and use it in GitHub Desktop.
Save canvural/7748b22f554a7f3db2e899518e4aa667 to your computer and use it in GitHub Desktop.
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