repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

args6.b

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