repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

return.b

B
 1nop() {
 2    return;
 3}
 4
 5add(a, b) {
 6    return (a + b);
 7}
 8
 9main() {
10    extrn printf;
11    nop();
12    printf("%d\n", add(34, 35));
13}