Hi
Why am i getting error i the below code.
abstract class SuperHeroes {
abstract void perform();
}
class IronMan extends SuperHeroes{
String action="Blowing bubbles";
IronMan(String action){
this.action = action;
}
void perform(){System.out.printIn(this.action);
}
}