Function
class Kucing {
var _color: String
var _height: Double
var _length: Double
var _weight: Double
init(color: String, height: Double, length: Double, weight: Double){
_color = color
_height = height
_length = length
_weight = weight
}
func purring() {
print("Meow ..")
}
func eat() {
_weight = _weight + 1
}
}INFO