''' CS5001 Fall 2018 Sample code -- process_user_input is a function we want to test. We separate out a function, get_input *just* to gather data from the terminal. ''' def get_input(): x = input("Enter a value") return x def process_user_input(): my_value = get_input() if my_value == "Hello": return 0 else: return 1