''' Purpose: demonstrate program user communication Author: Jim Cohoon Email id: jpc ''' # You can comment out lines of code by putting the # # in front of the code. # display haiku print( 'Camouflage not needed' ) print() print( 'Do not be afraid' ) print( 'Do not hide what makes you, you' ) print( 'You are welcomed here' ) print() print ( ' -- JPC' ) # Whole lines of blank space are just for separation. # You can put more or less blank lines. It doesn't # affect code being run. Only code statements are executed. # Also side note annotated programs will be posted # under Meetings in the class website as artifacts # so don't worry about writing everything I write down.