cx86/main.c

6 lines
46 B
C
Raw Normal View History

2019-06-23 10:40:25 -05:00
int main() {
int x=2;
x+=2;
return x;
}