From ec786a7efbf43dbd8c9dce49c62899b6ea92fb6b Mon Sep 17 00:00:00 2001 From: Mike Donaghy Date: Mon, 28 Jul 2008 00:06:28 -0400 Subject: [PATCH] Added B --- b/B.b | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 b/B.b diff --git a/b/B.b b/b/B.b new file mode 100644 index 00000000..6ebd0274 --- /dev/null +++ b/b/B.b @@ -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' ;