How do we give a function a default parameter of 20?

(int = 20)(int x = 20)(20)(int x == 20)

Great. We declare the parameter with a type and name and set it = to the default value.

Nope. We declare the parameter with a type and name and set it = to the default value.