Java - Interfaces
Examine the following code snippet:
What is the issue with this code?
interface Runner { void run(); }
class Athlete implements Runner {
void run() { System.out.println("Athlete running"); }
}What is the issue with this code?
