Help for this page

Select Code to Download


  1. or download this
    my $result = (split "", "ab")[(length(qq(ab))-1)];
    
    print $result;
    
  2. or download this
    $result = pop @{ [ split( "", "ab" ) ] };
    
    ...
    
    print qq($result\n);