Skip to content

Instantly share code, notes, and snippets.

@ajayverse404
Created January 26, 2019 15:45
Show Gist options
  • Select an option

  • Save ajayverse404/bf21a3cc8bbce38ef3bc4ac90109806a to your computer and use it in GitHub Desktop.

Select an option

Save ajayverse404/bf21a3cc8bbce38ef3bc4ac90109806a to your computer and use it in GitHub Desktop.
public interface Human {
publi void eat();
}
public class HumanoidRobot extends Human {
// Humanoid Robot - A humanoid is something that has an appearance
// resembling a human without actually being one.
// can robot eat ? No
@override
publi void eat() {
// do nothing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment