Hello, World!

Hey, look, I now have my own technical blog, too! It’s technical, because its posts (will) contain snippets of program code like the one below:

from __future__ import print_function

print('Hello, World!')

See?

The code above has been carefully crafted to run both under Python 21 and Python 3.

Expect more of this in the future, but for now I will just cut this post short, because hello world programs posts should be short and simple, right?


  1. Well, 2.6+ at least when print_function was added to the __future__ module (yeah, I know, it would also work without that import in this particular case…). 
%d bloggers like this: