Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created September 18, 2024 03:47
Show Gist options
  • Save gyugyu90/888508b2c57ea2b09b3350388cf99ece to your computer and use it in GitHub Desktop.
Save gyugyu90/888508b2c57ea2b09b3350388cf99ece to your computer and use it in GitHub Desktop.
// bool isOdd(int number) {
// return number % 1 == 0;
// }
bool isOdd(int number) => number % 2 == 1;
void main() {
print(isOdd(3));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment