📜  批处理到 exe - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:53.989000             🧑  作者: Mango

代码示例1
# This is script of C++. and don't copy this line. copy only the lines 3-10.

#include 

int main() {
    //do stuff
    system("title Hello");
    system("echo HELLO YOU THE GUY WHO SEEING THIS WINDOW");
    system("Pause");
}