7 lines
97 B
Plaintext
7 lines
97 B
Plaintext
|
#include "sylib.h"
|
||
|
// test hexadecimal define
|
||
|
int main(){
|
||
|
int a;
|
||
|
a = 0xf;
|
||
|
return a;
|
||
|
}
|