Functions 작성일 May 6, 2022 FunctionsPermalink 불필요한 반복을 줄여준다. Calling FunctionsPermalink print("hello") 출력 hello Defining FunctionsPermalink 파라미터는 생략할 수 있다. func sayHello() { print("hello, swift") } sayHello() 출력 hello, swift 이전 글 Optional Pattern 다음 글 Return Values