New branch

This commit is contained in:
Denys 2025-05-10 23:42:40 +12:00
parent ebfe053b4a
commit d68930a624

View File

@ -5,4 +5,5 @@ open class Item(var name: String, var sellIn: Int, var quality: Int) {
override fun toString(): String {
return this.name + ", " + this.sellIn + ", " + this.quality
}
}
}