Help for this page

Select Code to Download


  1. or download this
    my( $x, $y ) = ( $a, $a );
    
  2. or download this
    my( $x, $y ) = ( $o->next, $o->next );
    
  3. or download this
    my $x = $o->next;
    my $y = $o->next;
    
  4. or download this
    my( $x, $y ) = ( func(), func() );