For the example below, “perform_command(command)” wasn’t defined anywhere, why is it okay to be included in the body of process_user_input?
def process_user_input
command = get_user_input
while command != “quit”
perform_command(command) #I don’t understand this line, perform_command(command) was never defined…
command = get_user_input
end
puts “Good bye!”
end