Bugs in a vinyl store

Report a typo

You have a class VinylStore with one member function printVinyl(), which should print the name of the vinyl, but now it works incorrectly.

Find and fix the bugs.

Write a program in Kotlin
// fix it
class VinylStore(vinyl: String) {
fun printVinyl() {
println(this.vinyl)
}
}
___

Create a free account to access the full topic