overloading๊ฐ์ ์ค์ฝํ ์์์ ๊ฐ์ ์ด๋ฆ์ ํจ์๋ฅผ ์ฌ๋ฌ๊ฐ ๋ง๋ค ์ ์๋ ๊ธฐ๋ฅ์ด๋ค.ํจ์ ์ด๋ฆ์ด ๊ฐ์๋ ํ๋ผ๋ฏธํฐ์ ์๋ฃํ์ด ๋ค๋ฅด๊ฑฐ๋ ํ๋ผ๋ฏธํฐ์ ๊ฐฏ์๊ฐ ๋ค๋ฅด๋ค๋ฉด ์๋ก ๋ค๋ฅธ ํจ์๋ก ๋์ํ ์ ์๋ค.fun hello(x: Int)fun hello(x: Int, text: String)fun hello(x: Int, y: Int)ํ์ง๋ง ํ๋ผ๋ฏธํฐ์ ์ด๋ฆ๋ง ๋ค๋ฅด๊ณ ์๋ฃํ์ด ๊ฐ๋ค๋ฉด ์ค๋ฒ๋ก๋ฉ์ ํ ์ ์๋ค.fun hello(x: Int, y: Int)fun hello(a: Int, b: Int) ์์ fun main(){ read(24) read("ํ๊ธธ๋")}fun read(x: Int){ println("์ซ์ $x ์
๋๋ค")}fun read(x: String){ println("๋ฌธ์ $x ..