Skip to content

Instantly share code, notes, and snippets.

@ayeshLK
Last active January 4, 2022 19:16
Show Gist options
  • Save ayeshLK/ef39b86b3372b12638539cc4d4a189f3 to your computer and use it in GitHub Desktop.
Save ayeshLK/ef39b86b3372b12638539cc4d4a189f3 to your computer and use it in GitHub Desktop.
function isEvenNumber(int number) returns boolean {
// checks whether the `number` is divisible by `2`
if number % 2 == 0 {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment