Skip to content

Instantly share code, notes, and snippets.

@antonprafanto
Created March 6, 2022 05:49
Show Gist options
  • Save antonprafanto/2814915f00618ffcbe52f61923a0490b to your computer and use it in GitHub Desktop.
Save antonprafanto/2814915f00618ffcbe52f61923a0490b to your computer and use it in GitHub Desktop.
void main() {
var num = 2;
if(num > 0) {
print("${num} is positive");
}
else if(num < 0) {
print("${num} is negative");
} else {
print("${num} is neither positive nor negative");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment