Files
rxcc/test.c

28 lines
414 B
C
Raw Permalink Normal View History

2026-01-31 15:07:04 -05:00
int main() {
2026-02-18 21:43:53 -05:00
// Comment
2026-02-13 20:02:36 -05:00
int tomas = 8;
tomas /= 2;
tomas *= 3;
tomas %= 7;
tomas <<= 7;
tomas >>= 1;
tomas += 31;
tomas &= 21;
tomas |= 3;
2026-02-18 21:43:53 -05:00
tomas |= 303; //hi
2026-02-13 20:02:36 -05:00
tomas ^= 23;
tomas ^= 27;
tomas &= 302;
tomas ^= 392;
int jefferson;
jefferson = 3 + tomas / (~3 - 90);
2026-02-12 16:53:01 -05:00
jefferson *= tomas;
2026-02-13 20:02:36 -05:00
int three = tomas | jefferson;
return three;
2026-01-31 15:07:04 -05:00
}