Skip to content

Instantly share code, notes, and snippets.

@goindwalia
Created May 18, 2017 07:07
Show Gist options
  • Save goindwalia/dc5f59ad5a305bfbd8ebbf2c13e31678 to your computer and use it in GitHub Desktop.
Save goindwalia/dc5f59ad5a305bfbd8ebbf2c13e31678 to your computer and use it in GitHub Desktop.
/* 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