Practice 34166

Report a typo

[TITLE]A piece of cake # Application[/TITLE]

You work at a bakery where the whole process is automated. You received a new order for three cakes. Now, run the bakeCake function three times.

Write a program in Kotlin
suspend fun bakeCake() {
println("I'm a cyber baker. I'm starting to bake fast!")
delaySeconds(5)
println("The cake is ready!")
}

// Please change only the "main" function:
fun main() {

}
___

Create a free account to access the full topic