# 007: Function Parameters # Functions that accept input greet(name): show "Hello, {name}!" # Call with different arguments greet("Alex") greet("Jordan") greet("Casey") # The parameter 'name' takes on the value of each argument