sysy-data/functional/sy/06_const_var_defn2.sy

6 lines
83 B
Plaintext

//test const gloal var define
const int a = 10, b = 5;
int main(){
return b;
}