You're viewing a single post. I have much more to say! The main blog page is a good starting point.

Hello world in 2 bytes

A spectacular break-through in computer science! The famous hello world program in just two bytes:

$ cd /tmp
$ mkdir hello
$ cd hello
$ echo -n "ls" > 'Hello, world!'
$ chmod +x 'Hello, world!'

Now execute this wonderful piece of programming:

$ ./'Hello, world!'
Hello, world!