repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

out_of_order_funcalls.b

B
1// Introduce by https://github.com/tsoding/b/pull/198
2main() {
3    foo();
4}
5
6foo() {
7    extrn printf;
8    printf("No forward declaration is required\n");
9}