Android Kotlin Basics in Kotlin | Android Basics in Kotlin - Intro | Android Developers Build your first Android apps with the Kotlin programming language. developer.android.com 출력은 println으로 하되 print를 쓰면 \n없이 val로 변수 생성하면 변경 불가. 보통은 var로 for 대신에 repeat로 반복 가능 함수는 이런 식으로 사용 fun printBorder(border: String, timesToRepeat: Int) { repeat(timesToRepeat) { print(border) } println() } parameter는 이런 식으로..