Skip to content

Instantly share code, notes, and snippets.

@sudipto80
Created December 12, 2018 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sudipto80/6f7ec15505a38d1d67102d0bf2f281b9 to your computer and use it in GitHub Desktop.
Save sudipto80/6f7ec15505a38d1d67102d0bf2f281b9 to your computer and use it in GitHub Desktop.
package hello
fun main() {
var x = 11
var y = if (x > 10) { println("Hey!"); ":Kotlin"} else
{
println("NO!")
"OUCH!"
}
println(y)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment