repos / gbc

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

gbc / tests
xplshn  ·  2025-09-10

continue.bx

Bx
 1main() {
 2    extrn printf;
 3    auto i = 0;
 4    while (i < 5) {
 5        i++;
 6        if (i == 3) {
 7            continue;
 8        }
 9        printf("%d\n", i); // 1, 2, 4, 5
10    }
11    return(0);
12}