본문 바로가기

Mobile/Kotlin

[Kotlin-문법] 문자열 반복 repeat()

반응형

문자열을 반복할 수 있는 함수 repeat()

fun main() {
	println("*".repeat(5))
}

// 출력값 : *****

 

반응형