Skip to content

zc1023/sysyf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

The sysyf compiler

Notice

请根据需求自行添加.gitignore文件。不要上传无关文件(比如.vscode配置文件)。

Please add .gitignore by yourself.

请尽量统一代码风格,比如

//函数注释写在上面,函数名尽量小写,中间用'_'隔开
int f_g_h(){

}
//两个函数中间空1~2行

int main(){
    //1条或多条语句的注释写在上面
    int a;
    int b;

    int c;//变量注释写在后面

    if (1) {

    }
    else if (2) {

    }
    else{

    }

}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.2%
  • LLVM 4.0%
  • Other 1.8%