sysy/functional_c/sy/06_const_var_defn2.sy

8 lines
104 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
#include "sylib.h"
// test const gloal var define
const int a = 10, b = 5;
int main()
{
return b;
}