Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- */
- package cl.adl.inter;
- /**
- * @author RS
- *
- */
- public class Lagartija implements Comer, Dormir {
- public void aComer() {
- System.out.println("Cómo como una Lagartija");
- }
- public void aDormir() {
- System.out.println("Duermo como una lagartija");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement