Skip to content

Instantly share code, notes, and snippets.

View dastergon's full-sized avatar

Pavlos Ratis dastergon

View GitHub Profile

Keybase proof

I hereby claim:

  • I am dastergon on github.
  • I am dastergon (https://keybase.io/dastergon) on keybase.
  • I have a public key ASCWcL_1JH05ltGCQ6HWe-ZJvFnUN0PwfIz1W-Hm857bEQo

To claim this, I am signing this object:

@dastergon
dastergon / hello.b
Created May 10, 2015 12:48
The first ever known "hello world" version
// Kernighan's 1972 A Tutorial Introduction to the Language B
// https://en.wikipedia.org/wiki/%22Hello,_World!%22_program
main(){
extrn a,b,c;
putchar(a); putchar(b); putchar(c); putchar('!*n');
}
a 'hell';
b 'o, w';