C_Interpreter/main.c
OusmBlueNinja 9682b44a7a V 0.1.0
2024-12-24 13:34:24 -06:00

14 lines
206 B
C

int main() {
int first = 256;
int second = 265;
int third = first + second;
if (third > 500) {
third = third - 256;
} else {
third = third + 256;
}
return 0;
}