repos / gbc

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

gbc / tests
xplshn  ·  2025-08-13

literals.b

B
1main() {
2    extrn printf;
3    auto fmt;
4    // This must be `llu` and not `lu` because on windows `long` is 32-bits
5    printf("%llu\n", 69);
6    printf("%llu\n", 1000000);
7    printf("%llu\n", 123456789987654321);
8}