SYNOPSIS
	string capitalize(string str)

DESCRIPTION
	Convert the first character in str to upper case, and return
	the new string.

EXAMPLES
        capitalize("heya!") -> "Heya!"

SEE ALSO
	lower_case(E), swap_case(SEFUN), upper_case(SEFUN)
