Created
July 30, 2019 16:50
-
-
Save vamsitallapudi/8c7f5567bf03a061d0fc877328b2fbf3 to your computer and use it in GitHub Desktop.
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 main(args: Array<String>) { | |
val areaOfSquare = area() | |
println(areaOfSquare(5)) | |
println(areaOfSquare(10)) | |
} | |
fun area() : (Int) -> Int { | |
return {i -> i * i} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment