Created
May 18, 2017 07:07
-
-
Save goindwalia/dc5f59ad5a305bfbd8ebbf2c13e31678 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
/* not explicitly defined */ | |
fun main(args: Array<String>) { | |
val text = 10 | |
println(text) | |
} | |
/* explicitly defined */ | |
fun main(args: Array<String>) { | |
val text: Int = 10 | |
println(text) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment