repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

testBounds.b

B
1b[2000];
2main() {
3  extrn printf;
4  b[0] = 65; // 'A'
5  printf("%c\n", b[0]);
6}