repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

statements.b

B
 1// https://github.com/tsoding/b/issues/209
 2test1();
 3
 4// https://github.com/tsoding/b/issues/210
 5test2() auto a; extrn printf; printf("HELO\n");
 6
 7main() {
 8	test1();
 9	test2();
10}