Right now our first taste of functions (in pyfun2) is the following: ``` python def hello(firstname): # define the function print('Hello,', firstname) hello('Chase') # use the function ``` Because we take the time to walk through all syntax using this example we should cover return values here.