xplshn
·
2025-09-10
bext.md
Markdown
B extensions
Here we document all the things that deviate or extend the original description of the B programming language from kbman.
Top Level extrn
declarations
main() {
printf("Hello, World\n");
}
extrn printf;
printf
is now visible to all the functions in the global scope.