Open Jonnius00 opened 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") }
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") }