Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created July 6, 2019 14:08
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 rail-rate/1e6a05a9563cbe9369d8a11e65ad20d5 to your computer and use it in GitHub Desktop.
Save rail-rate/1e6a05a9563cbe9369d8a11e65ad20d5 to your computer and use it in GitHub Desktop.
if2
fun main(args: Array<String>) {
val a = 1
val b = 5
if(a<b){
println("aよりbが大きいです")
}else{
println("aよりbが小さいです")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment