rustic-sysy/sysy_sets/01_var_defn2.sy

8 lines
121 B
Plaintext
Raw Permalink Normal View History

2024-08-27 18:13:31 +08:00
//test domain of global var define and local define
int a = 3;
int b = 5;
int main(){
int a = 5;
return a + b;
}