Closure expression syntax can use constant parameters, variable parameters, and inout
parameters. Default values cannot be provided. Variadic parameters can be used if you
name the variadic parameter and place it last in the parameter list. Tuples can also be
used as parameter types and return types.
The example below shows a closure expression version of the backwards function from
earlier: