Skip to content

Instantly share code, notes, and snippets.

@giri021
Created January 21, 2023 13:03
Show Gist options
  • Save giri021/7cda2dac419bd1669ce87531ae33f95d to your computer and use it in GitHub Desktop.
Save giri021/7cda2dac419bd1669ce87531ae33f95d to your computer and use it in GitHub Desktop.
fluttering-osmium-9376

fluttering-osmium-9376

Created with <3 with dartpad.dev.

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