I have a class
class Dog { private val age: Int = 10 def makeSound(sound: String) = {println(sound)} }
How can I access private member wi