-
-
Save skydoves/4cb5ad0823c85ccc15075294b1853375 to your computer and use it in GitHub Desktop.
extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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