Help for this page

Select Code to Download


  1. or download this
        local ($a=1, $b=2, $c=3);
    
  2. or download this
        my ($a=1, $b=2, $c=3);
    
  3. or download this
    
        my ($a, $b, $c) = (1,2,3);