Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created August 15, 2019 08:27
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/95ec7102451a6375a12860ed84e842df to your computer and use it in GitHub Desktop.
Save rail-rate/95ec7102451a6375a12860ed84e842df to your computer and use it in GitHub Desktop.
main外7
fun main(args: Array<String>) {
printShow(5, 10)
printShow(1, 2)
}
fun printShow(a : Int, b : Int) : Unit{ //: Unitは書かなくても同じ意味になるので省略可能
println(a * b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment