「Swift入門」メソッドの書き方
1.引数、戻り値がない
func getSum() {
//some code
}
getSum()
2.引数、戻り値がある
func getSum(intValue: Int,intValue2:Int) -> Bool {
//some code
}
getSum(25,21);
Coding Changes the World
1.引数、戻り値がない
func getSum() {
//some code
}
getSum()
2.引数、戻り値がある
func getSum(intValue: Int,intValue2:Int) -> Bool {
//some code
}
getSum(25,21);