What is the correct way to call a function?
get_max_num([57, 99, 31, 18])
call.(get_max_num)
call.get_max_num([57, 99, 31, 18])
def get_max_num([57, 99, 31, 18])