Skip to content

Instantly share code, notes, and snippets.

@Mishco
Created November 25, 2022 12:07
Show Gist options
  • Select an option

  • Save Mishco/59258e6497cabfa3000eb170794752ca to your computer and use it in GitHub Desktop.

Select an option

Save Mishco/59258e6497cabfa3000eb170794752ca to your computer and use it in GitHub Desktop.
public class BasicPrinter implements Printer {
@Override
public boolean print() {
//Logic for printing
return true;
}
}
public class BasicScanner implements Scan {
@Override
public boolean scan() {
//Logic for scanning
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment