批处理文件中的多行提示

xiº*_*xiº 0 windows command-line cmd batch-file

我需要创建多行提示。

set /p choice="Press '1' for start host; Press '0' for exit;"
Run Code Online (Sandbox Code Playgroud)

输出应该是:

Press '1' for start host;
Press '0' for exit;
Run Code Online (Sandbox Code Playgroud)

怎么可能呢?

Mag*_*goo 5

Echo Press '1' for start host;
set /p choice="Press '0' for exit;"
Run Code Online (Sandbox Code Playgroud)

可能是最简单的