Monday, February 23, 2009

Python: Hello World

This is my first post against Python, watchout for more to come soon ...

Python way of saying "Hello world" :)


#!/usr/bin/env python

## In Python each module will have a name associated with it
## And here is the main module

if __name__ == "__main__":
print "Hello World";

No comments:

Post a Comment