xplshn
·
2025-08-13
minus_2.b
B
1main() {
2 extrn printf;
3 // If parsing of binary expressions is implemented correctly the expected
4 // output is -4
5 printf("%d\n", 2 - 2 - 2 - 2);
6}
git clone https://github.com/xplshn/gbc.git
1main() {
2 extrn printf;
3 // If parsing of binary expressions is implemented correctly the expected
4 // output is -4
5 printf("%d\n", 2 - 2 - 2 - 2);
6}