Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 15, 2019 04:06
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/721fadebca9f6ac7fd1b7f66c58e56aa to your computer and use it in GitHub Desktop.
Save rail-rate/721fadebca9f6ac7fd1b7f66c58e56aa to your computer and use it in GitHub Desktop.
main外6
fun main(args: Array<String>) {
val ans = cal(3, 5, 8) //3つに増やした
println(ans)
}
fun cal(x : Int, y : Int, z : Int) = x * y * z //こっちも3つに増やした
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment