Skip to content

Instantly share code, notes, and snippets.

@anjanashankar9
Created August 1, 2021 11:44
Embed
What would you like to do?
public static void main(String[] args) {
Device device = new Television();
Remote remote = new Remote(device);
// Turn TV on
Command cmd = new TurnTVOn(device);
cmd.execute();
//Turn TV Off
cmd = new TurnTVOff(device);
cmd.execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment