function get_preferences($which_preference = "all" ) {
// if $which_preference is "all", return all prefs;
// otherwise, get the specific preference requested...
}
When you call get_preferences( ), you can choose
to supply an argument. If you do, it returns the preference matching
the string you give it; if not, it returns all preferences.
A function may have any number of parameters with default values.
However, they must be listed after all the parameters that do not
have default values.