Help for this page

Select Code to Download


  1. or download this
    @a = ()[3, 5, 6];
    @b = @c[3, 5, 6];
    ...
    __END__
    0
    3
    
  2. or download this
    $r = ($a, $b) = 0 .. 11;
    
  3. or download this
    sassign(\$r, scalar lassign([\$a, \$b], range (0, 11)))
    sub lassign {
    ...
        $$rhs = $lhs;
        $$rhs;
    }