google-developer-training / kotlin-bootcamp

Report issues with the Kotlin Bootcamp for Programmers codelab
7 stars 2 forks source link

Kotlin Bootcamp issue: #199

Open Jonnius00 opened 10 months ago

Jonnius00 commented 10 months ago

found a mistake here Kotlin Bootcamp for Programmers 2: Kotlin basics 5. Task: Explore arrays, lists, and loops repeat(2) { println("A fish is swimming") }

should be rewritten as

repeat(2) { println("A fish is swimming\n") } image