Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created June 22, 2019 22:50
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/ded3f9b6ae6d6a466d96860a8211670f to your computer and use it in GitHub Desktop.
Save rail-rate/ded3f9b6ae6d6a466d96860a8211670f to your computer and use it in GitHub Desktop.
Boolean1
fun main(args: Array<String>) {
val number = 1
val a : Boolean = number==1
val b : Boolean = number==2
println("aの式は${a}です。")
println("bの式は${b}です。")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment