repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

goto.b

B
 1main() {
 2    extrn printf;
 3    auto i;
 4    i = 0;
 5loop:
 6    if (i < 5) {
 7        printf("%d\n", i++);
 8    } else {
 9        goto end;
10    }
11    goto loop;
12end:
13}