Help for this page

Select Code to Download


  1. or download this
    @array = [ \($a,$b,$c) ];
    
  2. or download this
    @array = \($a,$b,$c);
    
  3. or download this
    @array = (1..10);
    print scalar @array;  # 10
    ...
    
    @d = \($a,(@array));
    print @d;  # SCALAR(0x13579)SCALAR(0x11111)SCALAR(0x11112)...