Help for this page

Select Code to Download


  1. or download this
    @xyz = ( 'a', 'b', 'c' );
    print scalar (@xyz); #prints 3
    
  2. or download this
    print(scalar( ( 'a', 'b', 'c' ) ));   # c