Skip to content

Instantly share code, notes, and snippets.

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