EN: Some commands can implement simple operations on their own. RU: Некоторые команды способны выполнять простые операции самостоятельно.
| 31 | |
| 32 | |
| 33 | class SimpleCommand(Command): |
| 34 | """ |
| 35 | EN: Some commands can implement simple operations on their own. |
| 36 | |
| 37 | RU: Некоторые команды способны выполнять простые операции самостоятельно. |
| 38 | """ |
| 39 | |
| 40 | def __init__(self, payload: str) -> None: |
| 41 | self._payload = payload |
| 42 | |
| 43 | def execute(self) -> None: |
| 44 | print(f"SimpleCommand: See, I can do simple things like printing" |
| 45 | f"({self._payload})") |
| 46 | |
| 47 | |
| 48 | class ComplexCommand(Command): |