Cpy是一种通用动态类C语法脚本语言。它为用户提供了一种使用C语法编写Python代码的方法。以下是两个示例:

  1. Hello World 示例:

// file: hello.cpy

printf(\"Hello World!\");

执行结果:


$ cpy hello

Hello World!

  1. 从标准输入读取并处理命令:

// file: stdin.cpy

print \"input 'q' to quit:\";

while (true) {

    tprintf(\"> \");

    tline = stdin.readline();

    tline = line.strip().lower();

    tif (line == 'q') {

        ttprint \"bye.\";

        ttbreak;

    } else {

        ttprint \"your input: \" + tline;

    }

}

该脚本从标准输入读取数据,当用户输入 'q' 时退出。运行时,它将输出用户的输入内容。