Skip to content

Instantly share code, notes, and snippets.

@yusufcakal
Created October 28, 2017 23:27
Show Gist options
  • Save yusufcakal/c0c55699bbd746c66bb878738264c5a2 to your computer and use it in GitHub Desktop.
Save yusufcakal/c0c55699bbd746c66bb878738264c5a2 to your computer and use it in GitHub Desktop.
Medium Post
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