CompilerSysY/testcases/functional/46_hex_defn.sy
2023-04-30 00:57:11 +08:00

6 lines
78 B
Plaintext

// test hexadecimal define
int main(){
int a;
a = 0xf;
return a;
}