Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 8, 2024 13:07
Show Gist options
  • Save skydoves/4cb5ad0823c85ccc15075294b1853375 to your computer and use it in GitHub Desktop.
Save skydoves/4cb5ad0823c85ccc15075294b1853375 to your computer and use it in GitHub Desktop.
extension
fun Int.isEven(): Boolean {
return this % 2 == 0
}
val number = 4
println(number.isEven()) // Output: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment