# File: ChapterStrings/hello0.py """ Download Python v. 3.4.3 IDLE (Python 3.4 GUI - 32 bit) www.python.org first function hello() Hello World Good bye """ def hello(): print("Hello World") print("Good \nbye") # \n jumps to next line hello() # call function, no arguments