Hello , I am facing the below issue while executing the below code.
Can you please assist?
class vehicle (year:Int){
var Year = year
def cardet(name:String) {
var Name = name
println("Car name" + " " + name + " " + "Year" + " " + year)}}
class car(Speed:Int) extends vehicle(year){
var model = " "
def printc() = { "Model " + " " + model + "Speed" + " " + Speed + "Year" + " " + Year}
}
<console>:8: error: not found: value year
class car(Speed:Int) extends vehicle(year){