# simple python Hello World program: print('hello world') # or, more exclusive: def say_hello_to_the_world(): print('hello world') def main(): say_hello_to_the_world() main()