function c = firstLetter(s)
%firstLetter returns the first letter in a character string
%
% consumes: string
% produces: a string consisting of a single character 
%
% >> firstLetter('beryl')
%  ans = 
%    'b'
% >>
% P. Conrad CISC106 10/20/2006

c = s(1);
return;
end
