Fix that Java: The Broken Flash Drive
Sadly, one of our colleagues hasn’t used version control system and the flash drive he has used was broken,
so we have lost one part of the source code such as Starter
class.
class App extends Starter {
@Override
public void start() {
System.out.println("Start");
}
public static void main(String[] args) {
launch(args);
}
}
Implement the Starter
class and make it work! Once you start the application it should call the start
method of App
class.