Function Function์ ์ด๋ค ๊ธฐ๋ฅ์ ์ํํ๋ ์ฝ๋ ๋ธ๋ญ์ด๋ค. ์ด๋ ์์ ์ ๋ฆฌํ Method์ ์๋ฏธ๊ฐ ๊ฑฐ์ ๊ฐ๋ค๊ณ ๋ณผ ์ ์๋ค. ๋์ ์ Method ๊ฐ์ ๊ฒฝ์ฐ์๋ ์ด๋ค object ์์ ์ํด์ ๊ธฐ๋ฅ์ ์ํํ๋ค. ๋ฐ๋ฉด์ Function์ ๋ ๋ฆฝ์ ์ผ๋ก๋ ํธ์ถ์ด ๊ฐ๋ฅํ๋ค. Method → object.methodName( ) Function → functionName( ) func printTotalPriceWithDefaultValue(_ price: Int, _ count: Int) { โโโ } printTotalPriceWithDefaultValue(1500, 5) ์์ ๊ฐ์ด (_)๋ฅผ ์์ ์ฌ์ฉํ๋ฉด, External parameter name ์์ด input va..