Created
August 30, 2015 01:23
-
-
Save jm66/654dca687e67b162ab7a to your computer and use it in GitHub Desktop.
Telefono.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class Telefono { | |
public void call(); | |
public void callerID(); | |
public void sms(); | |
} | |
public class Nokia3210 extends Telefono { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment