Created with <3 with dartpad.dev.
Created
January 21, 2023 13:03
-
-
Save giri021/7cda2dac419bd1669ce87531ae33f95d to your computer and use it in GitHub Desktop.
fluttering-osmium-9376
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
main(List<String> args) { | |
checkRain(); | |
} | |
checkRain() { | |
bool check; | |
int val1 = 12; | |
int val2 = 9; | |
// Assigning variable check | |
// value depending on condition | |
check = (val1 > val2); | |
print(check); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment