Skip to content

Instantly share code, notes, and snippets.

@ZeroX-DG
Created October 10, 2017 17:30
Show Gist options
  • Save ZeroX-DG/988848dd30690f76e9db257d881e0465 to your computer and use it in GitHub Desktop.
Save ZeroX-DG/988848dd30690f76e9db257d881e0465 to your computer and use it in GitHub Desktop.
class AI{
public function powerUp(){
System.out.print("Fired up and ready to serve");
}
}
class CleaningAI extends AI{
public function clean(){
System.out.print("Cleaning the code...");
}
}
class DebugingAI extends AI{
public function debug(){
System.out.print("Debuging the code...");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment