This commit is contained in:
Mike Donaghy
2008-07-28 00:06:28 -04:00
parent 832fa3be84
commit ec786a7efb

10
b/B.b Normal file
View File

@@ -0,0 +1,10 @@
/* Hello World in B */
main() {
extern a, b, c;
putchar (a); putchar (b); putchar (c); putchar ('!*n');
}
a 'hell' ;
b 'o, w' ;
c 'orld' ;