traits
trait Car {
def two: Int = 1 * 2
val brand: String
}
trait Shiny {
val shineRefraction: Int
}Extending Traits
class BMW extends Car {
val brand = "BMW"
}class BMW extends Car with Shiny {
val brand = "BMW"
val shineRefraction = 12
}Last updated