Created
October 10, 2017 17:30
-
-
Save ZeroX-DG/988848dd30690f76e9db257d881e0465 to your computer and use it in GitHub Desktop.
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
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