CompilerSysY/testcases/functional_test/054_hex_defn.sy
2023-05-08 21:15:52 +08:00

6 lines
78 B
Plaintext

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