Multiline command.
(self, arg: cmd2.Statement)
| 122 | self.poutput(self.intro) |
| 123 | |
| 124 | def do_echo(self, arg: cmd2.Statement) -> None: |
| 125 | """Multiline command.""" |
| 126 | self.poutput( |
| 127 | stylize( |
| 128 | arg, |
| 129 | style=Style(color=self.foreground_color), |
| 130 | ) |
| 131 | ) |
| 132 | |
| 133 | |
| 134 | if __name__ == "__main__": |