repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

recursion.b

B
1func(i) {
2	extrn printf;
3	if (i > 0) {
4		printf("%d\n", i);
5		func(i-1);
6	}
7}
8
9main() func(10);