back to contents Python: function function ↑ top function #!/usr/bin/python -u def hello(): return "Hello World!" if __name__ == "__main__": print hello() # Hello World! ↑ top