pll at lanminds.com writes:
> [...]
>
> Experienced Hacker
>
> #include <stdio.h>
> #define S "Hello, World\n"
> main(){exit(printf(S) strlen(S) ? 0 : 1);}
>
> Seasoned Hacker
>
> % cc -o a.out ~/src/misc/hw/hw.c
> % a.out
>
> Guru Hacker
>
>
> % cat
> Hello, world.
> ^D
Python hacker
'Hello, world.'