This commit is contained in:
cncsmonster 2024-01-06 07:13:12 +08:00
parent 0cc4ed71e4
commit f1a09b3cdf
2 changed files with 8 additions and 0 deletions

3
base/sy/00_main.sy Normal file
View File

@ -0,0 +1,3 @@
int main(){
return 0;
}

5
base/sy/01_global.sy Normal file
View File

@ -0,0 +1,5 @@
int a;
int b[3];
int main(){
return 0;
}