Computer/Apple Ecosystem Insights
[Swift] 함수
생각하는달팽이
2016. 2. 10. 15:27
Swift 에서 함수를 사용하는 방법을 알아보겠습니다.
Objective C 에서 사용한 것과 비슷한점이 많네욤 ㅇㅅㅇ..
// 2016. 02. 10. Ruke
// Functions
func greeting(name: String) ->String {
return "\(name) Hello there."
}
greeting("class")
greeting("Jason")
func areas(num1: Int, num2: Int) -> String {
if(num1 >= num2){
return "The Square is \(num1 * num2) square inches";
}else{
return "The rectangle is \(num1 * num2) square inches";
}
}
areas(12, num2: 15)
반응형