纯中文C++代码,可运行

#include <stdio.h>
#include <tchar.h>

#define 如果 if
#define 打印 printf
#define 返回 return
#define 开始 {
#define 结束 }
#define 主函数 _tmain
#define 整数 int

//纯中文C++程序设计
整数 主函数(整数 参数, _TCHAR* argv[])
开始
 如果(1>0)打印("1");
 打印("Fyter 打印%d", 参数);
 返回 0;
结束

原文地址:https://www.cnblogs.com/fyter/p/pure-chinese-cpp.html