How is the greet function defined and invoked?
Create a separate executable file named greet for every call.
Run greet() every time it is called.
greet()
Define greet() { ...; }, then execute greet by name.
greet() { ...; }
greet
Echoing the word greet defines its body.