repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

args11-extrn.b

B
1main() {
2    extrn printf;
3    printf("Testing how well passing 11 arguments works.\n");
4    printf("Expected output is `1 2 3 4 5 6 7 8 9 10`\n");
5    printf("%d %d %d %d %d %d %d %d %d %d\n", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
6}