Created
October 28, 2017 23:27
-
-
Save yusufcakal/c0c55699bbd746c66bb878738264c5a2 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 Asus implements Computer { | |
@Override | |
public void name() { | |
System.out.println("Bilgisayarın Markası Asus"); | |
} | |
@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