Skip to content

Instantly share code, notes, and snippets.

@fermopili
Created March 19, 2017 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fermopili/7598413eaaffcb9cbefc21ad5348ff51 to your computer and use it in GitHub Desktop.
Save fermopili/7598413eaaffcb9cbefc21ad5348ff51 to your computer and use it in GitHub Desktop.
com.javarush.task.task13.task1313
/*
Интерфейс Animal
*/
public class Solution {
public static void main(String[] args) throws Exception {
}
public interface Animal {
Color getColor();
}
public static abstract class Fox implements Animal{
public String getName() {
return "Fox";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment