repos / gbc

GBC - Go B Compiler
git clone https://github.com/xplshn/gbc.git

gbc / tests
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}