[Swift] 함수
2016. 2. 10. 15:27ㆍComputer/Apple Ecosystem Insights
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)
반응형
'Computer > Apple Ecosystem Insights' 카테고리의 다른 글
[Swift] Dictionary (0) | 2016.02.10 |
---|---|
[Swift] Array (0) | 2016.02.10 |
[Swift] 조건문 (0) | 2016.02.10 |
[Swift] 반복문 ! (0) | 2016.02.10 |
[Swift] 변수들의 타입 (2) | 2016.02.05 |