Learning on mistakes

Report a typo

Oops! A programmer made some mistakes in the code. Correct the code to make it compilable. The program should print "Good job!".

Sample Input 1:


Sample Output 1:

Good job!
Write a program in Kotlin
class Container<T>(t: T) {
var value = t
}

fun main() {
val container = Container<>()
println(container.value)

}
___

Create a free account to access the full topic