repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

inc_dec.b

B
 1main() {
 2	extrn printf;
 3	auto x;
 4	x = 3;
 5	printf("x: %d\n", x);
 6	printf("++x: %d\n", ++x);
 7	printf("x++: %d\n", x++);
 8	printf("x: %d\n", x);
 9	printf("x--: %d\n", x--);
10	printf("--x: %d\n", --x);
11}