@xyz = ( 'a', 'b', 'c' ); print scalar (@xyz); #prints 3 #### print(scalar( ( 'a', 'b', 'c' ) )); # c