Created
October 28, 2017 23:26
-
-
Save yusufcakal/9bbd2bc5b40edbd90c4e2ee3d0598873 to your computer and use it in GitHub Desktop.
Medium Post
This file contains hidden or 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
public class Mac implements Computer { | |
@Override | |
public void name() { | |
System.out.println("Bilgisayarın Markası Mac"); | |
} | |
@Override | |
public void since(int year) { | |
System.out.println(year + " senesinde alınmış."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment