Skip to content

Instantly share code, notes, and snippets.

@Dup4
Last active October 7, 2023 05:03
Show Gist options
  • Select an option

  • Save Dup4/a18baab9a6115928d69e441aa6a8369a to your computer and use it in GitHub Desktop.

Select an option

Save Dup4/a18baab9a6115928d69e441aa6a8369a to your computer and use it in GitHub Desktop.

Revisions

  1. Dup4 renamed this gist Oct 7, 2023. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. Dup4 created this gist Oct 7, 2023.
    18 changes: 18 additions & 0 deletions 中文.cpp
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    #include <iostream>
    using namespace std;

    #define 输出 cout
    #define 换行 endl
    #define 常量 const
    #define 整形 int
    #define 等于 =
    #define 主函数 main
    #define 返回 return
    #define 零 0

    整形 主函数 () {
    常量 整形 一个变量 等于 2;
    输出 << 一个变量 << 换行;

    返回 零;
    }